Quickstart

Make your first gpt88.cc API request in 5 minutes by replacing only the base_url and API key.

Get Started

Make your first gpt88.cc API request in 5 minutes by replacing only the Base URL and API key.

Get an API key

Open Agent API Keys, create an API key, and export it into your shell environment.

bash
export GPT88_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxx

Endpoints

Standard API examples in this documentation use the Base URL shown on the website homepage:https://api.gpt88.cc. Use the media URL shown on the homepage for direct image and video tasks.

  • https://api.gpt88.cc — standard OpenAI, Claude, Gemini, and audio APIs.
  • https://img.gpt88.cc — direct image and video APIs.

cURL request

bash
curl https://api.gpt88.cc/v1/chat/completions \
  -H "Authorization: Bearer $GPT88_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-sol",
    "messages": [{"role": "user", "content": "Introduce gpt88.cc in one sentence."}]
  }'

Official SDK

Any OpenAI-compatible SDK can be used by pointing base_url to https://api.gpt88.cc.

main.pypython
from openai import OpenAI

client = OpenAI(
    base_url="https://api.gpt88.cc",
    api_key="YOUR_GPT88_API_KEY",
)

resp = client.chat.completions.create(
    model="gpt-5.6-sol",
    messages=[{"role": "user", "content": "Introduce gpt88.cc in one sentence."}],
)
print(resp.choices[0].message.content)

Next steps