List models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
GET
/models
curl \
-X GET https://api.openai.com/v1/models \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"object": "list",
"data": [
{
"id": "string",
"created": 42,
"object": "model",
"owned_by": "string"
}
]
}