TokenLX
AZURE

azure/gpt-image-1

$5.00/M tokens input$40.00/M tokens output0.57B  tokens servedImage

Latest Azure image model with improved realism and editing. Supports inpainting, outpainting, and mask-guided edits.

Key strengths

  • Photorealistic output
  • Native image editing
  • Better spatial control
  • High-resolution output

Use cases

  • Photo editing
  • Image variations
  • Creative retouching
  • E-commerce catalog

Azure's azure/gpt-image-1 is a state-of-the-art text-to-image generation model. It produces highly detailed, photorealistic and stylized imagery from natural-language prompts, with strong instruction following and accurate text rendering inside generated images.

Compatible with the OpenAI `/images/generations` endpoint shape, supporting prompt, size, seed, negative prompt, and resolution controls. Excellent for creative workflows, marketing assets, product visualization, and concept art at scale.

azure/gpt-image-1 is fully OpenAI-compatible — drop in your existing OpenAI Python or Node SDK and switch `baseURL` to `https://api.tokenlx.ai`. TokenLX transparently routes your requests to the optimal provider endpoint while preserving streaming, function-calling, and structured-output semantics.

Performance

Compare different providers across TokenLX · All locations.

Throughput
35
tok/s
Latency
109
ms
E2E Latency
187
ms
Tool Call Errors
0.05
%
Output Errors
0.35
%
Time to First Token
91
ms

Effective Pricing

Actual cost per million tokens across providers over the past 7 days.

Input
$5.00
per 1M tokens
7d agotoday
Output
$40.00
per 1M tokens
7d agotoday
Cache read
$1.25
per 1M tokens
7d agotoday

Recent activity

Total usage per day on TokenLX (last 30 days).

Prompt
165.00M
Completion
404.25M
30d ago15d agotoday

Sample code & API

TokenLX normalizes requests and responses across providers. Use any OpenAI SDK or our native SDK.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.tokenlx.ai/v1",
    api_key="sk-tokenlx-...",
)

response = client.images.generate(
    model="gpt-image-1",
    prompt="A futuristic city skyline at sunset, photorealistic",
    size="1024x1024",
    n=1,
)
print(response.data[0].url)

Replace sk-aihubrouter-… with your key from the dashboard.