Gpt 4 API

Run openai/gpt-4 through FastInfra's OpenAI-compatible API. Pay per token, no subscription, routed to the cheapest available provider.

Read the docs
Pricing

Gpt 4 pricing

Billed per token used. Prices sync automatically from wholesale providers.

Direction Price per 1M tokens
Input$31.50
Output$63.00
Availability

Served by 1 provider

Requests route to OpenRouter by default (cheapest). Pin a specific provider with the :provider suffix.

Provider Upstream model ID
openrouter openai/gpt-4
Quickstart

Call Gpt 4 in 30 seconds

Works with any OpenAI SDK — change the base URL and API key only.

Python

from openai import OpenAI

client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.fastinfra.ai/v1")

response = client.chat.completions.create(
    model="openai/gpt-4",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

curl

curl https://api.fastinfra.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
FAQ

Gpt 4 — common questions

How much does the openai/gpt-4 API cost?

On FastInfra, openai/gpt-4 costs $31.5/1M input, $63/1M output tokens. Billing is per token used, with no subscription.

Is openai/gpt-4 compatible with the OpenAI SDK?

Yes. FastInfra exposes openai/gpt-4 through an OpenAI-compatible endpoint at https://api.fastinfra.ai/v1 — point any OpenAI SDK at that base URL with a FastInfra API key and keep your existing code.

Which providers serve openai/gpt-4?

openai/gpt-4 is available from 1 provider(s): openrouter. Requests route to OpenRouter by default (cheapest); append ":provider" to the model ID to pin one.