Skip to content

1688token.aiAI Model Aggregation Platform

OpenAI-compatible API, one-stop access to Claude, GPT and more. Get started in minutes.

Quick Start

Install the SDK and send your first request:

bash
pip install openai
bash
npm install openai
python
from openai import OpenAI

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

response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Tell me about 1688token.ai."}
    ]
)

print(response.choices[0].message.content)
javascript
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "YOUR_API_KEY",
  baseURL: "https://1688token.ai/v1"
});

const response = await client.chat.completions.create({
  model: "gpt-4o-mini",
  messages: [
    { role: "system", content: "You are a helpful assistant." },
    { role: "user", content: "Tell me about 1688token.ai." }
  ]
});

console.log(response.choices[0].message.content);
bash
curl https://1688token.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      {"role": "system", "content": "You are a helpful assistant."},
      {"role": "user", "content": "Tell me about 1688token.ai."}
    ]
  }'

Supported Models

Chat Models

ModelProviderDescription
gpt-4oOpenAIMultimodal flagship, supports image input
gpt-4o-miniOpenAICost-effective, great for everyday chat
gpt-4.1OpenAI1M token context window
gpt-4.1-miniOpenAILong-context lightweight version
claude-opus-4-7AnthropicMost powerful reasoning
claude-sonnet-4-6AnthropicBalanced performance & speed — recommended
claude-haiku-4-5-20251001AnthropicFast & lightweight for high-concurrency

Why 1688token.ai?

Unified Access

One API Key to access Claude, GPT and other leading AI models — no need to manage multiple accounts separately.

Great Documentation

Clear, example-rich docs with Python, Node.js and cURL samples to get you up and running fast.

Quick Deployment

Built on the OpenAI compatibility standard — minimal changes to your existing code, migrate in minutes.