> ## Documentation Index
> Fetch the complete documentation index at: https://docs.geekhub.mx/llms.txt
> Use this file to discover all available pages before exploring further.

# Model catalog

> 33 models across 7 providers · chat, images, and video

Geek Hub exposes **33 models** from the most relevant providers in the industry, all with the same API and the same payment method.

<CardGroup cols={3}>
  <Card title="Chat" icon="message" href="/en/models/chat">
    17 models for conversation and reasoning
  </Card>

  <Card title="Images" icon="image" href="/en/models/images">
    9 models for image generation
  </Card>

  <Card title="Video" icon="video" href="/en/models/videos">
    7 models for video generation
  </Card>
</CardGroup>

## Naming convention

All models follow the `<provider>/<model-slug>` format:

* `anthropic/claude-sonnet-4-6`
* `openai/gpt-5`
* `google/gemini-2.5-pro`
* `fal/flux-1.1-pro`
* `xai/grok-4`

The namespace makes clear which provider is behind it and lets you switch between alternatives by changing just 1 string.

## Live model API

For the up-to-the-minute list, call:

```bash theme={null}
curl https://api.geekhub.mx/v1/models \
  -H "Authorization: Bearer ghub_sk_live_xxx"
```

It returns something like:

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "anthropic/claude-sonnet-4-6",
      "object": "model",
      "kind": "chat",
      "owned_by": "anthropic",
      "context_length": 200000,
      "pricing": {
        "input_per_1m_usd": 3,
        "output_per_1m_usd": 15
      }
    },
    ...
  ]
}
```

## Pricing

Listed prices are **the original provider's USD**. For the final cost:

```
final_cost_mxn = provider_price × (1 + 0.05) × FX_MXN_USD
```

* `+5%` Geek Hub markup
* `FX_MXN_USD` is fixed monthly and announced to customers (no surprises)
