Skip to main content
GET
/
v1
/
browsing
/
tasks
/
{id}
curl --request GET \
  --url https://api.yutori.com/v1/browsing/tasks/00000000-0000-0000-0000-000000000000-run_scout-1234567890 \
  --header 'X-API-Key: YOUR_API_KEY'
{
  "task_id": "<string>",
  "view_url": "<string>",
  "status": "queued",
  "result": "<string>",
  "paused": true,
  "structured_result": {},
  "webhook_url": "<string>"
}
curl --request GET \
  --url https://api.yutori.com/v1/browsing/tasks/00000000-0000-0000-0000-000000000000-run_scout-1234567890 \
  --header 'X-API-Key: YOUR_API_KEY'

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Response

Successful Response

task_id
string
required

Unique identifier for this browsing task

view_url
string
required
status
enum<string>
required
Available options:
queued,
running,
succeeded,
failed
result
string | null
paused
boolean | null
structured_result
Structured Result · object

If an output schema was provided, the result formatted as JSON matching that schema

webhook_url
string | null

Echoes the webhook URL configured for this agent.run request, if provided.