Function calling Vision Chat

GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as...

What it's best for

Best for the hardest general work: long, nuanced documents, difficult reasoning and tasks where output quality matters more than price per token. It supports function calling, so it can drive tools and agent workflows.

Pricing

Input $3.09 (£2.31) per 1M tokens
Output $12.34 (£9.24) per 1M tokens
Context window 128K tokens
Hosting Partner-routed vetted partner provider

Prices updated daily — last generated 2026-07-08.

Billing is metered per request in GBP on the same monthly invoice as your apps — no subscription, no minimum. We list every model once, at the cheapest route we can serve it on; if we have to fail over to a more expensive route, we absorb the difference and your price does not change.

Where your data is processed

Requests to GPT 4o are routed to a vetted partner provider and processed on that provider's infrastructure — they leave our infrastructure, and the UK-residency guarantee that applies to our UK-hosted models does not apply here. We hold the provider credentials server-side and route on cost and availability. If you need prompts that never leave our own infrastructure, use one of our UK-hosted models.

Call it in two minutes

The gateway is OpenAI-compatible: point your SDK or HTTP client at api.node.uk and use the model id gpt-4o. Credentials come from your portal, with £15 of free credit on signup.

curl https://api.node.uk/api/v1/models/gpt-4o/v1/chat/completions \
  -H "Authorization: Bearer $NODE_GATEWAY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-4o", "messages": [{"role": "user", "content": "Hello"}]}'
from openai import OpenAI

client = OpenAI(
    base_url="https://api.node.uk/api/v1/models/gpt-4o/v1",
    api_key=NODE_GATEWAY_TOKEN,
)

reply = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello"}],
)

Browse the full model catalogue, read which model for which task, or see how the AI Gateway works.