Gonka API — Access the Decentralized Inference Network
Gonka Broker

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)

Using the Anthropic SDK or a Claude Code agent? See the Anthropic-compatible setup.

How to create a Gonka API key

Get access in three steps

1

Create an account

Sign up with email or Google. No wallet, seed phrase, or crypto.

2

Generate an API key

Create a gnk-prx- key for your app in the dashboard.

3

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 started

Already have an account? Sign in