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 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
}'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
})
});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.Endpoint
DeepSeek V4 Flash and V4 Pro are the current live routes. Other provider APIs become selectable after gogogoapi integration checks are complete.
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
Common errors
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.