Skip to main content
GET
/
v1
/
datasets
Get a list of datasets in project
curl --request GET \
  --url https://api.tokenfactory.nebius.com/v1/datasets \
  --header 'Authorization: Bearer <token>'
{
  "first_id": "<string>",
  "last_id": "<string>",
  "has_more": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "status": "READY",
      "schema": [
        {
          "name": "<string>",
          "type": {
            "name": "string"
          }
        }
      ],
      "metadata": {},
      "folder": "<string>",
      "current_version": "0ed2d94b38fb40b9b61f6a",
      "created_at": 123,
      "error": "<string>",
      "type": "dataset",
      "ai_project_id": "example_project"
    }
  ],
  "object": "list"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:100
Required range: 1 <= x <= 1000
after
string | null
ai_project_id
string | null
sort_by
enum<string>
default:created_at
Available options:
created_at,
name
sort_order
enum<string>
default:desc
Available options:
asc,
desc

Response

Successful Response

first_id
string | null
required
last_id
string | null
required
has_more
boolean
required
data
DatasetResponse · object[]
required
object
string
default:list