List fine-tunes
GET
https://api.openai.com/v1/fine-tunes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/v1/fine-tunes' \
--header 'Authorization: Bearer '
Response Response Example
{
"object": "list",
"data": [
{
"id": "ft-AF1WoRqd3aJAHsqc9NY7iL8F",
"object": "fine-tune",
"model": "curie",
"created_at": 1614807352,
"fine_tuned_model": null,
"hyperparams": { ... },
"organization_id": "org-...",
"result_files": [],
"status": "pending",
"validation_files": [],
"training_files": [ { ... } ],
"updated_at": 1614807352,
},
{ ... },
{ ... }
]
}
Request
Header Params
Authorization
string
optional
Example:
Bearer {{YOUR_API_KEY}}
Responses
Modified at 2023-06-28 06:28:45