Skip to main content
GET
/
v1
/
scouting
/
tasks
/
{scout_id}
/
updates
curl --request GET \
  --url https://api.yutori.com/v1/scouting/tasks/36d178a0-591f-4567-8019-32d24f9e55ba/updates?page_size=20 \
  --header 'X-API-Key: YOUR_API_KEY'
{
  "updates": [
    {
      "id": "<string>",
      "timestamp": 123,
      "content": "<string>",
      "citations": [
        {
          "id": "<string>",
          "url": "<string>",
          "preview_data": {}
        }
      ],
      "stats": {
        "num_tool_calls": 0,
        "num_mcp_tool_calls": 0,
        "num_crawler_calls": 0,
        "num_navigator_steps": 0,
        "num_websites_visited": 0,
        "sec_saved": 0
      },
      "structured_result": {}
    }
  ],
  "prev_cursor": "<string>",
  "next_cursor": "<string>"
}
curl --request GET \
  --url https://api.yutori.com/v1/scouting/tasks/36d178a0-591f-4567-8019-32d24f9e55ba/updates?page_size=20 \
  --header 'X-API-Key: YOUR_API_KEY'

Authorizations

x-api-key
string
header
required

Path Parameters

scout_id
string<uuid>
required

Query Parameters

page_size
integer | null
cursor
string | null

Response

Successful Response

Public API response for scout updates. Excludes internal fields.

updates
Update · object[]
required
prev_cursor
string | null

Cursor for previous page

next_cursor
string | null

Cursor for next page