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

Chat

17 models for conversation and reasoning

Images

9 models for image generation

Video

7 models for video generation

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:
curl https://api.geekhub.mx/v1/models \
  -H "Authorization: Bearer ghub_sk_live_xxx"
It returns something like:
{
  "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)