GET
/
v1
/
files
List user files
curl --request GET \
  --url https://api.studio.nebius.com/v1/files \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "bytes": 123,
      "created_at": 123,
      "filename": "<string>",
      "object": "file",
      "purpose": "<string>",
      "status": "<string>",
      "status_details": "<string>"
    }
  ],
  "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
purpose
enum<string> | null
Available options:
batch,
fine-tune
ai_project_id
string | null

Project ID to list files for

Response

Successful Response

The response is of type object.