Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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.
Was this page helpful?