Skip to main content
GET
/
v1
/
datasets
/
{dataset_id}
/
export
Read dataset content as csv or jsonl
curl --request GET \
  --url https://api.tokenfactory.nebius.com/v1/datasets/{dataset_id}/export \
  --header 'Authorization: Bearer <token>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dataset_id
string
required

Query Parameters

format
string
required

Export format: csv or jsonl

columns
string | null

Comma-separated list of columns to export, optional

limit
integer | null

Limit the number of rows to export, optional

Response

Successful Response