GET
/
v1
/
batches
List user batches
curl --request GET \
  --url https://api.studio.nebius.com/v1/batches \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "endpoint": "<string>",
      "completion_window": "<string>",
      "status": "<string>",
      "created_at": 123,
      "request_counts": {},
      "input_file_id": "<string>",
      "output_file_id": "<string>",
      "error_file_id": "<string>",
      "override_settings": {
        "model": "<string>",
        "temperature": 123,
        "top_p": 123,
        "max_tokens": 123
      },
      "in_progress_at": 123,
      "finalizing_at": 123,
      "completed_at": 123,
      "metadata": {}
    }
  ],
  "first_id": "<string>",
  "last_id": "<string>",
  "has_more": true,
  "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:10
after
string | null
input_file_id
string | null
ai_project_id
string | null

Project ID to list batches

Response

Successful Response

The response is of type object.