Retrieve model
GET/models/{model}
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
Path Parameters
model: string
Returns
Retrieve model
curl https://api.openai.com/v1/models/$MODEL \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "id",
"created": 0,
"object": "model",
"owned_by": "owned_by"
}Returns Examples
{
"id": "id",
"created": 0,
"object": "model",
"owned_by": "owned_by"
}