1.4 KiB
1.4 KiB
List models
get /models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
Returns
-
data: array of Model-
id: stringThe model identifier, which can be referenced in the API endpoints.
-
created: numberThe Unix timestamp (in seconds) when the model was created.
-
object: "model"The object type, which is always "model".
"model"
-
owned_by: stringThe organization that owns the model.
-
-
object: "list""list"
Example
curl https://api.openai.com/v1/models \
-H "Authorization: Bearer $OPENAI_API_KEY"
Response
{
"data": [
{
"id": "id",
"created": 0,
"object": "model",
"owned_by": "owned_by"
}
],
"object": "list"
}
Example
curl https://api.openai.com/v1/models \
-H "Authorization: Bearer $OPENAI_API_KEY"
Response
{
"object": "list",
"data": [
{
"id": "model-id-0",
"object": "model",
"created": 1686935002,
"owned_by": "organization-owner"
},
{
"id": "model-id-1",
"object": "model",
"created": 1686935002,
"owned_by": "organization-owner",
},
{
"id": "model-id-2",
"object": "model",
"created": 1686935002,
"owned_by": "openai"
},
]
}