OpenAIModelsListResponseSchema
OpenAI-compliant response schema for GET /api/v1/models.
data object[]required
Array of model objects in OpenAI-compatible format.
Array [
createdintegerrequired
Unix timestamp indicating when the model was created.
idstringrequired
Identifier of the model, used as the model value in inference requests.
owned_bystringrequired
Identifier of the owner of the model.
objectstring
Object type, always "model".
]
objectstring
Object type identifier. Always "list".
OpenAIModelsListResponseSchema
{
"data": [
{
"created": 0,
"id": "string",
"owned_by": "string",
"object": "model"
}
],
"object": "list"
}
Was this page helpful?