Skip to main content
GET
/
fine-tunes
/
{id}
cURL
curl --request GET \
  --url https://api.cartesia.ai/fine-tunes/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "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"

Path Parameters

id
string
required

ID of the fine-tune to retrieve

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