GET
/
datasets
/
v3
/
snapshots
curl --request GET \
  --url https://api.brightdata.com/datasets/v3/snapshots \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "status": "running",
    "dataset_id": "<string>",
    "dataset_size": 123
  }
]

Authorizations

Authorization
string
header
required

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

Get API Key from: https://brightdata.com/cp/setting/users.

Example: Authorization: Bearer b5648e1096c6442f60a6c4bbbe73f8d2234d3d8324554bd6a7ec8f3f251f07df

Query Parameters

dataset_id
string
required

The dataset identifier (can be found in the specific API page)

status
enum<string>

List only snapshots with a specific status

Available options:
running,
ready,
failed
skip
integer
default:0

Skip the first x snapshots

limit
integer
default:1000

Limit the number of snapshots to return

Required range: x <= 5000
from_date
string

List only snapshots that were created after a specific date

to_date
string

List only snapshots that were created before a specific date

Response

200 - application/json

OK

The response is of type object[].

GET
/
datasets
/
v3
/
snapshots
curl --request GET \
  --url https://api.brightdata.com/datasets/v3/snapshots \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "status": "running",
    "dataset_id": "<string>",
    "dataset_size": 123
  }
]

Authorizations

Authorization
string
header
required

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

Get API Key from: https://brightdata.com/cp/setting/users.

Example: Authorization: Bearer b5648e1096c6442f60a6c4bbbe73f8d2234d3d8324554bd6a7ec8f3f251f07df

Query Parameters

dataset_id
string
required

The dataset identifier (can be found in the specific API page)

status
enum<string>

List only snapshots with a specific status

Available options:
running,
ready,
failed
skip
integer
default:0

Skip the first x snapshots

limit
integer
default:1000

Limit the number of snapshots to return

Required range: x <= 5000
from_date
string

List only snapshots that were created after a specific date

to_date
string

List only snapshots that were created before a specific date

Response

200 - application/json

OK

The response is of type object[].