List the currently available models and provide basic information for each model, such as owner and availability.
Request
Provide your bearer token in the Authorization header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Example:Bearer {{YOUR_API_KEY}}
Request samples
curl --location -g --request GET '{{BASE_URL}}/v1/models' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}'
Responses
application/json {
"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"
},
],
"object": "list"
}
Modified at 2025-03-30 03:48:52