Skip to main content

List fine tuning jobs

GET 
/ai/fine_tuning/jobs

Retrieve a list of all fine tuning jobs created by the user.

Responses

200: Successful Response

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/v2/ai/fine_tuning/jobs' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"id": "string",
"created_at": 0,
"finished_at": 0,
"hyperparameters": {
"n_epochs": 3
},
"model": "string",
"organization_id": "string",
"status": "queued",
"trained_tokens": 0,
"training_file": "string"
}
]
}