curl --request GET \
--url https://api.orq.ai/v2/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"type": "chat",
"owned_by": "vendor"
}
],
"has_more": true
}Lists the currently available models, and provides basic information about each one such as the owner and availability.
curl --request GET \
--url https://api.orq.ai/v2/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"type": "chat",
"owned_by": "vendor"
}
],
"has_more": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A list of model objects.
list Show child attributes
The model identifier, which can be referenced in the API endpoints.
The timestamp of the model creation
The modality of the model
chat, completion, embedding, image, tts, stt, rerank, moderation, vision Describe the provider of the model. Every model with vendor is publicly available, while models with workspace are private.
vendor, workspace Was this page helpful?