Retrieve model
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
Path parameters
-
The ID of the model to use for this request
GET
/models/{model}
curl \
-X GET https://api.openai.com/v1/models/gpt-3.5-turbo \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "string",
"created": 42,
"object": "model",
"owned_by": "string"
}