Gonka API
Gonka API
Overview of the Gonka Network API surface via GonkaGate: OpenAI compatibility, USD billing, and transparent cost fields (network cost + platform fee) in responses. Step-by-step setup lives in the docs.
- Billing — USD without crypto wallets
- Compatibility — OpenAI requests and SDKs
- Cost metadata — network cost + platform fee per response
After creating a key, you land in the dashboard to send the first request. Quickstart lives in the docs.
GonkaGate is an independent gateway to Gonka Network and is not affiliated with it. Step-by-step setup lives in the docs.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.gonkagate.com/v1",
apiKey: "YOUR_API_KEY"
});
const response = await client.chat.completions.create({
model: "qwen/qwen3-32b-fp8",
messages: [{ role: "user", content: "..." }]
});
const { usage } = response;
console.log(
usage?.base_cost_usd,
usage?.platform_fee_usd,
usage?.total_cost_usd
);Compatibility snapshot
Key compatibility highlights; full details in the API reference.
OpenAI SDK
SupportedDrop-in support for official SDK calls.
Chat Completions
SupportedOpenAI chat completions request/response format.
Streaming
SupportedSSE streaming responses on supported models.
Tool calling
Partialtool_choice + function calls where available.
response_format
PartialStructured response format for supported models.
Surface coverage
Quick view of what is ready for production routing.
- Supported — OpenAI SDK, chat completions, streaming.
- Partial — API support exists, but model availability can vary.
- Live check — Use /v1/models to confirm live availability.
Not supported yet
- Image endpoints
- Video endpoints
- Audio endpoints
Quick actions
Core endpoints (overview)
Short list for orientation; full reference in the API reference.
Chat completions with streaming support.
Live model list and availability.
Integration notes
Two routes cover chat and discovery; parameter details in the API reference.
- Auth — Bearer API key across all endpoints.
- Streaming — SSE responses where supported.
- Discovery —
/v1/modelsis the source of availability.