Models API

The Models API allows you to fetch a list of available AI models programmatically.

https://api.qorebit.ai/v1/models

List Models

Returns a list of all model objects available to your account.

cURL
curl https://api.qorebit.ai/v1/models \
  -H "Authorization: Bearer qb_live_..."

Response Format

JSON Response
{
  "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"
    }
  ]
}