Skip to main content
GET
/
request
/
{id}
/
status
Get Request Status
curl --request GET \
  --url https://api.brightdata.com/datasets/deep_lookup/v1/request/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "ai_meu3z0171o8k9jc4dh",
  "status": "running",
  "progress": 65,
  "pages_read": 342,
  "pages_considered": 1250,
  "matched_records": 31,
  "is_trial": false,
  "result_limit": 50
}

Authorizations

Authorization
string
header
required

Use your Bright Data API Key as a Bearer token in the Authorization header.

How to authenticate:

  1. Obtain your API Key from the Bright Data account settings at https://brightdata.com/cp/setting/users
  2. Include the API Key in the Authorization header of your requests
  3. Format: Authorization: Bearer YOUR_API_KEY

Example:

Authorization: Bearer b5648e1096c6442f60a6c4bbbe73f8d2234d3d8324554bd6a7ec8f3f251f07df

Learn how to get your Bright Data API key: https://docs.brightdata.com/api-reference/authentication

Path Parameters

id
string
required
Examples:

"ai_meu3z0171o8k9jc4dh"

Response

200 - application/json

Request status

request_id
string
Examples:

"ai_meu3z0171o8k9jc4dh"

status
enum<string>
  • queued - Request is waiting to be processed
  • running - Research in progress
  • completed - Results ready
  • failed - Error occurred
  • cancelled - Request was cancelled
Available options:
queued,
running,
completed,
failed,
cancelled
Examples:

"running"

progress
integer

Progress percentage (0-100)

Examples:

65

pages_read
integer
Examples:

342

pages_considered
integer
Examples:

1250

matched_records
integer
Examples:

31

is_trial
boolean
Examples:

false

result_limit
integer
Examples:

50

I