Ling.AI

VIP AI API Gateway

Private capacity for priority workloads.

Ling.AI VIP uses a dedicated API endpoint and isolated runtime for higher-priority traffic.

Three compatible entry points

All examples target api.vip.lingapi.ai, keeping VIP configuration separate from the standard endpoint.

OpenAI SDK(Chat) POST /v1/chat/completions
from openai import OpenAI

client = OpenAI(
    base_url="https://api.vip.lingapi.ai/v1",
    api_key="<YOUR_API_KEY>"
)

response = client.chat.completions.create(
    model="<model id from /v1/models>",
    messages=[{"role": "user", "content": "Introduce the Ling.AI API Gateway in three sentences."}],
    stream=False
)
OpenAI SDK(Responses) POST /v1/responses
from openai import OpenAI

client = OpenAI(
    base_url="https://api.vip.lingapi.ai/v1",
    api_key="<YOUR_API_KEY>"
)

response = client.responses.create(
    model="<model id from /v1/models>",
    input="Summarize the public endpoints and tool capabilities available in this system."
)
HTTP(x-api-key) GET /v1/models
curl -sS https://api.vip.lingapi.ai/v1/models \
  -H "x-api-key: <YOUR_API_KEY>"

Explore the docs

Browse public APIs, model capabilities, tool integrations, account usage, and async task flows based on the capabilities enabled in this instance.