Docs

Make your first China model API call.

Sign in, buy credits, create a backend key, then call the current China AI model route from your server.

Sign in

Open the dashboard with X, Google, email, or wallet access.

Buy credits

Buy non-refundable USD API credits with supported USDT or USDC.

Create API key

Copy a server-side bearer key for your backend.

Call the API

Send messages to the live endpoint and stream the response.

cURL
curl https://www.gogogoapi.com/api/v1/chat/deepseek \
  -H "Authorization: Bearer $GOGOGOAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash",
    "messages": [
      { "role": "user", "content": "Write a concise API usage checklist." }
    ],
    "maxCompletionTokens": 256
  }'
JavaScript
const response = await fetch("https://www.gogogoapi.com/api/v1/chat/deepseek", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.GOGOGOAPI_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "deepseek-v4-flash",
    messages: [{ role: "user", content: "Explain the product in one paragraph." }],
    maxCompletionTokens: 256
  })
});
Backend environment

Put the dashboard key in your backend environment or secret manager, then read it at request time. Do not send the key to a browser, extension, or mobile client.

# .env.local or your backend secret manager
GOGOGOAPI_BASE_URL=https://www.gogogoapi.com/api/v1
GOGOGOAPI_KEY=gogo_live_...

# Never commit this file or expose the key in client-side code.
Production checklist
Keep GOGOGOAPI_KEY server-side only.
Use Authorization: Bearer from your backend requests.
Handle 402 by asking the user to buy credits or lowering the output budget.
Log request ids and status codes, not full prompts or API secrets.

Endpoint

DeepSeek V4 Flash and V4 Pro are the current live routes. Other provider APIs become selectable after gogogoapi integration checks are complete.

Base URL
https://www.gogogoapi.com
Endpoint
/api/v1/chat/deepseek
Billing
estimate -> stream -> settle
View API list Open dashboard
OpenClaw setup

Users who want to run gogogoapi inside OpenClaw can add the gogogoapi key as an OpenAI-compatible provider and point it at the DeepSeek chat route.

Request shape

Authorization
Bearer API key created in the dashboard.
messages
Array of system, user, and assistant messages.
maxCompletionTokens
Output budget used for preflight estimate.
model
Optional: deepseek-v4-flash or deepseek-v4-pro.

Common errors

400 invalid_json
The request body is not valid JSON.
400 invalid_request
A required field is missing or malformed.
401 wallet_or_api_key_required
Use a dashboard session or Bearer API key.
402 insufficient_api_credits
Buy credits or lower the output budget.
413 request_too_large
Reduce the request body size.
429 rate_limit_exceeded
Wait briefly, then retry the request.
503 model_route_unavailable
The API endpoint is temporarily unavailable.
Ready to build

Sign in, buy credits, create an API key.

Use the dashboard to fund USD credits with USDT or USDC, create a backend key, and send your first China model API request.

Open dashboard