Gonka API — easy access to the inference network
Gonka Broker is a gateway to the Gonka decentralized GPU network, compatible with OpenAI and Anthropic clients. Get an API key, pay in USD, and call open-source models. No wallet or tokens to manage.
What is the Gonka API?
Gonka is a decentralized network of GPU providers that serves open-source LLMs. The Gonka API exposes those models through a standard REST interface, so you can run open-source models through a simple API, without operating any infrastructure yourself.
Normally, using a decentralized network means holding tokens and signing on-chain transactions. Gonka Broker removes that step: we handle the on-chain work, so you interact with a plain HTTPS endpoint and a bearer key, billed in USD.
How to connect
One base URL, a bearer key, and the standard OpenAI Chat Completions format. Point your OpenAI or Anthropic client at the proxy and start sending requests.
- Base URL
https://proxy.gonkabroker.com/v1- Authentication
Authorization: Bearer gnk-prx-…- Format
- OpenAI Chat Completions, drop-in compatible.
from openai import OpenAI
client = OpenAI(
base_url="https://proxy.gonkabroker.com/v1",
api_key="gnk-prx-YOUR_KEY_HERE",
)
resp = client.chat.completions.create(
model="MiniMaxAI/MiniMax-M2.7",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content) import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://proxy.gonkabroker.com/v1",
apiKey: "gnk-prx-YOUR_KEY_HERE",
});
const resp = await client.chat.completions.create({
model: "MiniMaxAI/MiniMax-M2.7",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(resp.choices[0].message.content); curl https://proxy.gonkabroker.com/v1/chat/completions \
-H "Authorization: Bearer gnk-prx-YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"model": "MiniMaxAI/MiniMax-M2.7",
"messages": [{"role": "user", "content": "Hello!"}]
}' Using the Anthropic SDK or a Claude Code agent? See the Anthropic-compatible setup.
How to create a Gonka API keyGet access in three steps
Create an account
Sign up with email or Google. No wallet, seed phrase, or crypto.
Generate an API key
Create a gnk-prx- key for your app in the dashboard.
Call the endpoint
Point your OpenAI or Anthropic client at the proxy and start inferring.
Get your Gonka API key
Sign up, add a card, and start calling open-source models in minutes.
Get startedAlready have an account? Sign in