GET v1/browser/request/{id}

For more information on browser requests, see here.

The following endpoint allows you to query browser request for your account by ID.

Get a browser request by ID

get

This endpoint retrieves a browser request by its ID.

Authorizations
Path parameters
idstringRequired

The unique identifier of the browser request to retrieve.

Query parameters
idstringRequired

The unique identifiers of the browser request to retrieve.

Responses
200
The browser request
application/json
get
GET /v1/browser/requests/{id} HTTP/1.1
Host: api.gaffa.dev
X-API-Key: YOUR_API_KEY
Accept: */*
{
  "id": "text",
  "url": "text",
  "proxy_location": "text",
  "state": "text",
  "credit_usage": 1,
  "error": "text",
  "error_reason": "text",
  "actual_url": "text",
  "http_status_code": 100,
  "from_cache": true,
  "started_at": "2025-06-04T05:13:13.551Z",
  "completed_at": "2025-06-04T05:13:13.551Z",
  "running_time": "text",
  "page_load_time": "text",
  "actions": [
    {
      "id": "text",
      "type": "text",
      "query": "text",
      "custom_id": "text",
      "timestamp": "2025-06-04T05:13:13.551Z",
      "output": "text",
      "reference": "text",
      "error": "text"
    }
  ],
  "video": "text"
}

Last updated