cURL
Scraper Studio API
Get job metadata
GET /dca/log/ returns metadata for a Bright Data Scraper Studio job: status, input counts, output line counts, failures and run timestamps.
GET
cURL
Retrieve metadata for a triggered Bright Data Scraper Studio job: status, input counts, success and failure counts, page counts and run timestamps. Use this endpoint when you need observability into a job, for example to track how many inputs succeeded, how many failed or how long the job took. This endpoint returns metadata only. To download the actual scraped data, use Receive batch data.Documentation Index
Fetch the complete documentation index at: https://docs.brightdata.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Thejob_id is the collection_id returned by POST /dca/trigger.
Response
Status values: building, running, done, failed, cancelled.
When to use this endpoint
- Track job progress for a dashboard or monitor
- Compute a success rate:
Success / Inputs - Identify which jobs deduplicated inputs (
dup_inputs > 0) - Measure job duration: compare
startedto the response timestamp
Errors
| Status | Cause | Fix |
|---|---|---|
401 Unauthorized | Token missing, malformed or revoked | Re-copy from Account Settings → API Tokens |
404 Not Found | Job ID does not exist or has expired | Confirm the ID matches a recent collection_id from /dca/trigger |
5xx | Transient Bright Data API error | Retry with exponential backoff, for example 1s, 2s, 4s |
Related
- Trigger async batch collection: the endpoint that creates the job
- Receive batch data: download the dataset itself, not metadata
- Get errors for a job: per-input error details for debugging
Authorizations
Use your Bright Data API Key as a Bearer token in the Authorization header.
How to authenticate:
- Obtain your API Key from the Bright Data account settings at https://brightdata.com/cp/setting/users
- Include the API Key in the Authorization header of your requests
- 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
The ID of the job to retrieve.
Response
200 - application/json
OK