GET
/models
curl \
--request GET 'https://api.openai.com/v1/models' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"object": "list",
"data": [
{
"id": "string",
"created": 42,
"object": "model",
"owned_by": "string"
}
]
}