List fine-tuning jobs
GET
https://api.openai.com/v1/fine_tuning/jobs
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/v1/fine_tuning/jobs?limit=2' \
--header 'Authorization: Bearer $OPENAI_API_KEY'
Response Response Example
{
"object": "list",
"data": [
{
"object": "fine_tuning.job.event",
"id": "ft-event-TjX0lMfOniCZX64t9PUQT5hn",
"created_at": 1689813489,
"level": "warn",
"message": "Fine tuning process stopping due to job cancellation",
"data": null,
"type": "message"
},
{ ... },
{ ... }
], "has_more": true
}
Request
Query Params
limit
stringΒ
required
Example:
2
Header Params
Authorization
stringΒ
required
Example:
Bearer $OPENAI_API_KEY
Responses
Modified atΒ 2024-12-11 08:50:26