GET v1/browser/requests/{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
X-API-KeystringRequired
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
get
/v1/browser/requests/{id}
GET /v1/browser/requests/{id}?id=text 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": 1,
  "from_cache": true,
  "started_at": "2025-11-20T10:50:40.682Z",
  "completed_at": "2025-11-20T10:50:40.682Z",
  "running_time": "text",
  "page_load_time": "text",
  "actions": [
    {
      "id": "text",
      "type": "text",
      "custom_id": "text",
      "timestamp": "2025-11-20T10:50:40.682Z",
      "output": {},
      "reference": "text",
      "iterations": 1,
      "actions": [
        {
          "id": "text",
          "type": "text",
          "custom_id": "text",
          "timestamp": "2025-11-20T10:50:40.682Z",
          "output": {},
          "reference": "text",
          "iterations": 1,
          "actions": [
            "[Circular Reference]"
          ],
          "error": "text"
        }
      ],
      "error": "text"
    }
  ],
  "video": "text"
}

Last updated