One endpoint,
200+ models

Keep your code, change the model ID. Chat, vision, and reasoning on H200 GPUs

Get API Key
curl https://api.gmi-serving.com/v1/chat/completions \
  -H "Authorization: Bearer $GMI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-ai/DeepSeek-V4-Pro",
    "stream": true,
    "messages": [{"role": "user", "content": "Hello"}]
  }'
Models Available
200+

Models Available

Data Center Coverage
Global

Data Center Coverage

Uptime target
99.9%

Uptime target

Four ways in

Start with the piece you need. Each links to its reference

Inference API

Chat, vision, and reasoning on one OpenAI-compatible endpoint

API Reference

SDK

Python and TypeScript clients. Drop-in for the OpenAI SDK

SDK Docs

AgentBox

Deploy and run agents on managed compute

Open AgentBox

Docs

Quickstarts, references, and code samples

Read Docs

First request

Create a key, pick a model, read the stream

  1. 01

    Create a key

    Generate an API key in the console

  2. 02

    Pick a model

    Copy a model id, or list them with GET /v1/models

  3. 03

    Send a request

    Call the endpoint and read the stream

  4. 04

    Scale

    Switch to a dedicated endpoint for fixed latency

python · openai client

# pip install openai
from openai import OpenAI
client = OpenAI(base_url="https://api.gmi-serving.com/v1",
                api_key=GMI_API_KEY)  # from console.gmicloud.ai

stream = client.chat.completions.create(
    model="deepseek-ai/DeepSeek-V4-Pro",  # any id from /v1/models
    stream=True,
    messages=[{"role":"user",
               "content":"Summarize this paragraph."}])

for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Endpoints

One base URL, one key, the same request shape across routes

Base URLhttps://api.gmi-serving.com
POST/v1/chat/completionsChat, vision, tools, streamed or full
POST/v1/responsesOpenAI Responses API
POST/v1/messagesAnthropic Messages API
GET/v1/modelsList models on your key

Built on GMI Cloud

Apps running on the same API and compute. Open one to see it work

See all demos
Viva Football
Real-time prediction

Viva Football

2026 tournament prediction league. Pick group winners and a 32-team knockout bracket, lock in daily, climb the live leaderboard.

open demo
Music Memory
Text and image

Music Memory

Your Spotify year, sorted into chapters. Claude names your eras, roasts your top songs, and recommends what's missing. Gemini paints each chapter.

open demo
Picture Compose
Image generation

Picture Compose

Photorealistic image compositing. Gemini 3.1 Pro reads the scene's light and perspective; Nano Banana 2 paints your objects in subtly and naturally.

open demo

Models

200+ open and frontier models behind one API. Pass any id from /v1/models as the model field, no redeploys, no new SDKs

Browse all models
FRONTIER

anthropic/claude-opus-4.8

Anthropic flagship

FRONTIER

openai/gpt-5.6

OpenAI flagship

Multimodal

google/gemini-3.1-pro-preview

Text + vision

Video

openai/sora-2

Text + image to video

Image

moonshotai/kimi-k3

Open flagship, text-to-image

Reasoning

moonshotai/Kimi-K2-Thinking

Long-horizon agentic

Per-token pricing, from $0.05 / 1M

Priced per model, see the Models section for what runs on your key

View pricing

Start with an API key

Create a key, copy a snippet, read tokens back