---
title: "Get a list of datasets in project"
method: GET
path: "/v1/datasets"
tags: ["datasets"]
---

# Get a list of datasets in project

`GET /v1/datasets`

List datasets

## Query parameters

- `limit` integer
- `after` string, nullable
- `ai_project_id` string, nullable
- `sort_by` 'created_at' | 'name'
- `sort_order` 'asc' | 'desc'

## Response `200`

Successful Response

- DatasetsResponse
  - `object` string
  - `first_id` string, nullable, required
  - `last_id` string, nullable, required
  - `has_more` boolean, required
  - `data` DatasetResponse[], required
    - `id` string, required — The object identifier, which can be referenced in the API endpoints.
    - `name` string, required — ID of the dataset.
    - `status` 'READY' | 'PENDING' | 'FAILED' | 'TEMPORARY' | 'DRAFT', required
    - `schema` ColumnSchemaOutput[], required — Dataset schema definition.
      - `name` string, required
      - `type` union, required
        - SchemaPrimitive
          - `name` 'string' | 'integer' | 'boolean' | 'float' | 'double' | 'json' | 'null', required
        - SchemaOptionOutput
          - `name` 'option', required
          - `item` union, required
            - SchemaPrimitive
              - …
            - SchemaOptionOutput — recursive
    - `metadata` object, required — Additional metadata associated with the dataset.
    - `current_version_origin` DatasetOriginResponse
      - `type` 'upload' | 's3' | 'demo', required
    - `folder` string, required — Folder path where the dataset is stored.
    - `current_version` string, nullable, required — Current version of the dataset.
    - `type` string
    - `created_at` integer, required — Unix timestamp when the dataset was created.
    - `error` string, nullable, required — Error message if the dataset is in an error state.
    - `ai_project_id` string, nullable — AI Studio project ID to associate with the dataset.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api.md) · [All operations](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nebius/nebius-openai-compatible-inference-api/versions/0fb323abba3c/schema)
