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

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"

Body

application/json

Request to create a new fine-tune

name
string
required

Name for the new fine-tune

description
string
required

Description for the fine-tune

language
string
required

Language code for the fine-tune

model_id
string
required

Base model ID to fine-tune from

dataset
string
required

Dataset ID containing training files

Response

200 - application/json

Information about a fine-tune

id
string
required

Unique identifier for the fine-tune

name
string
required

Name of the fine-tune

description
string
required

Description of the fine-tune

language
string
required

Language code of the fine-tune

model_id
string
required

Base model identifier to fine-tune from

dataset
string
required

ID of the dataset used for fine-tuning

status
enum<string>
required

Current status of the fine-tune

Available options:
created,
training,
completed,
failed