GonkaGate Documentation
Gonka API Quickstart
Make your first request to Gonka Network through the GonkaGate OpenAI-compatible gateway. This quickstart covers base URL, authentication, and a working example request.
GonkaGate is an independent gateway to Gonka Network and is not affiliated with it.
Need the docs overview? Start with Gonka API Docs .
Need the gateway overview? Gonka API hub covers endpoints, compatibility, and pricing.
https://api.gonkagate.com/v1Installation
Install the official OpenAI SDK — GonkaGate is fully compatible:
pip install openaiAuthentication
Create an account to get your API key and use it in the Authorization header:
Authorization: Bearer gp-your-api-keyNeed detailed API key steps and security tips? See the Authentication guide.
Your First Request
Use the standard OpenAI SDK with GonkaGate's base_url:
from openai import OpenAI
client = OpenAI(
base_url="https://api.gonkagate.com/v1",
api_key="your-gonkagate-api-key"
)
response = client.chat.completions.create(
model="qwen/qwen3-235b-a22b-instruct-2507-fp8",
messages=[{"role": "user", "content": "Hello, Gonka!"}]
)
print(response.choices[0].message.content)Next Steps
External resources
For protocol or network-level documentation (official). This page documents the GonkaGate gateway API.