Skip to main content

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.

  • BillingUSD without crypto wallets
  • CompatibilityOpenAI requests and SDKs
  • Cost metadatanetwork 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.

openai.ts
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

Supported

Drop-in support for official SDK calls.

Chat Completions

Supported

OpenAI chat completions request/response format.

Streaming

Supported

SSE streaming responses on supported models.

Tool calling

Partial

tool_choice + function calls where available.

response_format

Partial

Structured response format for supported models.

Surface coverage

Quick view of what is ready for production routing.

  • SupportedOpenAI SDK, chat completions, streaming.
  • PartialAPI support exists, but model availability can vary.
  • Live checkUse /v1/models to confirm live availability.

Not supported yet

  • Image endpoints
  • Video endpoints
  • Audio endpoints

Core endpoints (overview)

Short list for orientation; full reference in the API reference.

POST/v1/chat/completions

Chat completions with streaming support.

GET/v1/models

Live model list and availability.

Integration notes

Two routes cover chat and discovery; parameter details in the API reference.

  • AuthBearer API key across all endpoints.
  • StreamingSSE responses where supported.
  • Discovery/v1/models is the source of availability.

FAQ

Ready to integrate?