Supported Models

The Creor Gateway provides access to models from Anthropic, OpenAI, Google, and other leading providers. Use any model by specifying its ID in the model parameter.

Anthropic Models

Claude models from Anthropic are available through the Gateway. These models excel at coding, analysis, and long-context tasks.

Model IDContext WindowMax OutputCapabilities
claude-opus-4-20250514200K tokens32K tokensMost capable. Best for complex reasoning, multi-step tasks, and nuanced analysis.
claude-sonnet-4-20250514200K tokens16K tokensBalanced performance and cost. Best for most coding and general-purpose tasks.
claude-haiku-3-5-20241022200K tokens8K tokensFastest and most affordable. Best for simple tasks, classification, and extraction.

Tip

Claude Sonnet 4 is the recommended default for most use cases. It offers a strong balance of intelligence, speed, and cost.

OpenAI Models

GPT models from OpenAI are available for teams that prefer them or need specific capabilities like function calling or JSON mode.

Model IDContext WindowMax OutputCapabilities
gpt-4o128K tokens16K tokensMultimodal. Accepts text and images. Fast and cost-effective.
gpt-4o-mini128K tokens16K tokensSmaller, faster GPT-4o variant. Great for high-volume, simpler tasks.
o3200K tokens100K tokensAdvanced reasoning model with chain-of-thought capabilities.
o4-mini200K tokens100K tokensEfficient reasoning model for structured problem-solving.

Google Models

Gemini models from Google are available for teams that need large context windows or multimodal capabilities.

Model IDContext WindowMax OutputCapabilities
gemini-2.5-pro1M tokens65K tokensLargest context window. Excellent for analyzing entire codebases.
gemini-2.5-flash1M tokens65K tokensFast and affordable with a large context window.
gemini-2.0-flash1M tokens8K tokensPrevious generation. Cost-effective for simpler tasks.

Open Source Models

Select open-source models are available through the Gateway, hosted on optimized infrastructure for low latency.

Model IDProviderContext WindowCapabilities
deepseek-v3DeepSeek128K tokensStrong coding and reasoning capabilities. Cost-effective.
deepseek-r1DeepSeek128K tokensReasoning model with chain-of-thought. Good for math and logic.
llama-4-maverickMeta1M tokensOpen-weight model with massive context window.
qwen-2.5-coder-32bAlibaba128K tokensSpecialized for code generation and understanding.

Note

Open source model availability may vary. Use the /v1/models endpoint to check which models are currently available in real time.

Pricing

Gateway pricing is per million tokens, billed separately for input (prompt) and output (completion) tokens. Prices are in USD.

ModelInput (per 1M tokens)Output (per 1M tokens)
claude-opus-4-20250514$15.00$75.00
claude-sonnet-4-20250514$3.00$15.00
claude-haiku-3-5-20241022$0.80$4.00
gpt-4o$2.50$10.00
gpt-4o-mini$0.15$0.60
o3$10.00$40.00
o4-mini$1.10$4.40
gemini-2.5-pro$1.25$10.00
gemini-2.5-flash$0.15$0.60
deepseek-v3$0.27$1.10
deepseek-r1$0.55$2.19

Prices reflect the Creor Gateway rate, which includes infrastructure and routing costs. For up-to-date pricing, check the Models & Pricing page in the dashboard.

Tip

Use the usage object in each API response to track costs in real time. The prompt_tokens and completion_tokens fields let you calculate the exact cost of each request.

List Models via API

Use the /v1/models endpoint to get the current list of available models programmatically. This is useful for building model selectors in your application.

Request

curl https://api.creor.ai/v1/models \
  -u YOUR_API_KEY:

Response

{
  "object": "list",
  "data": [
    {
      "id": "claude-sonnet-4-20250514",
      "object": "model",
      "created": 1712937600,
      "owned_by": "anthropic",
      "capabilities": {
        "streaming": true,
        "function_calling": true,
        "vision": true,
        "json_mode": true
      },
      "context_window": 200000,
      "max_output_tokens": 16000,
      "pricing": {
        "input_per_million": 3.00,
        "output_per_million": 15.00
      }
    },
    {
      "id": "gpt-4o",
      "object": "model",
      "created": 1712937600,
      "owned_by": "openai",
      "capabilities": {
        "streaming": true,
        "function_calling": true,
        "vision": true,
        "json_mode": true
      },
      "context_window": 128000,
      "max_output_tokens": 16000,
      "pricing": {
        "input_per_million": 2.50,
        "output_per_million": 10.00
      }
    }
  ]
}

Filtering by Capability

You can filter models by capability using query parameters:

# List only models that support vision
curl "https://api.creor.ai/v1/models?capability=vision" \
  -u YOUR_API_KEY:

# List only models from a specific provider
curl "https://api.creor.ai/v1/models?owned_by=anthropic" \
  -u YOUR_API_KEY:

JavaScript Example

1
2
3
4
5
6
7
8
9
10
11
12
import OpenAI from "openai";
 
const client = new OpenAI({
apiKey: process.env.CREOR_API_KEY,
baseURL: "https://api.creor.ai/v1",
});
 
const models = await client.models.list();
 
for (const model of models.data) {
console.log(`${model.id} (by ${model.owned_by})`);
}