List Models — OneHub

Returns the list of models available to your plan.

Docs Docs Quick Start Authentication SDK Setup Available Models Rate Limits Chat Completions Streaming List Models Embeddings Image Generation Text to Speech Speech to Text Billing & Wallet Webhooks Errors

List Models

GET https://www.onehub.design/v1/models

curl https://www.onehub.design/v1/models \
  -H "Authorization: Bearer sk-onehub-xxx"

Response

{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-5-nano",
      "object": "model",
      "created": 1730000000,
      "owned_by": "openai"
    },
    {
      "id": "anthropic/claude-haiku-4.5",
      "object": "model",
      "created": 1730000000,
      "owned_by": "anthropic"
    }
  ]
}

See Available Models for the catalog and plan requirements.