Skip to main content
GET
/
v1
/
sessions
/
async
/
{request_id}
/
status
Async Session Status
curl --request GET \
  --url https://api.anchorbrowser.io/v1/sessions/async/{request_id}/status \
  --header 'anchor-api-key: <api-key>'
{
  "data": {
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "pending",
    "created_at": "2023-11-07T05:31:56Z",
    "progress": {
      "current_phase": "queued"
    },
    "session": {
      "item_index": 123,
      "session_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "pending",
      "cdp_url": "<string>",
      "live_view_url": "<string>",
      "error": "<string>",
      "retry_count": 123,
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "metadata": {}
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.anchorbrowser.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

request_id
string<uuid>
required

The request_id returned from POST /v1/sessions/async.

Response

Async session status retrieved successfully.

Polling response for GET /v1/sessions/async/{request_id}/status.

data
object