Models API
The Models API allows you to fetch a list of available AI models programmatically.
https://api.qorebit.ai/v1/modelsList Models
Returns a list of all model objects available to your account.
curl https://api.qorebit.ai/v1/models \
-H "Authorization: Bearer qb_live_..."Response Format
{
"object": "list",
"data": [
{
"id": "openai/gpt-4o",
"object": "model",
"created": 1686935002,
"owned_by": "openai"
},
{
"id": "anthropic/claude-3-opus",
"object": "model",
"created": 1692235002,
"owned_by": "anthropic"
}
]
}