Skip to main content
GET
/
fine-tunes
/
cURL
curl --request GET \
  --url https://api.cartesia.ai/fine-tunes/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "language": "<string>",
      "model_id": "<string>",
      "dataset": "<string>",
      "status": "created"
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

Cartesia API key

Headers

Cartesia-Version
enum<string>
required

API version header. Must be set to the API version, e.g. '2024-06-10'.

Available options:
2024-06-10,
2024-11-13,
2025-04-16
Example:

"2025-04-16"

Query Parameters

limit
integer | null

The number of fine-tunes to return per page, ranging between 1 and 100.

starting_after
string | null

A cursor to use in pagination. starting_after is a fine-tune ID that defines your place in the list. For example, if you make a /fine-tunes request and receive 20 objects, ending with fine_tune_abc123, your subsequent call can include starting_after=fine_tune_abc123 to fetch the next page of the list.

ending_before
string | null

A cursor to use in pagination. ending_before is a fine-tune ID that defines your place in the list. For example, if you make a /fine-tunes request and receive 20 objects, starting with fine_tune_abc123, your subsequent call can include ending_before=fine_tune_abc123 to fetch the previous page of the list.

Response

200 - application/json

Paginated list of fine-tunes

data
FineTune · object[]
required

List of fine-tune objects

has_more
boolean
required

Whether there are more fine-tunes available