Skip to content

Quickstart

This guide walks you through signing up, creating an API key, adding funds, and making your first request.

Go to app.gonkabroker.com/signup and sign up with your email or Google account.

If you sign up with email, check your inbox for a verification link and click it to activate your account.

After signing in, go to the Deposits tab and click Top Up.

Choose an amount, select your payment method, and complete the checkout. Your deposit is created immediately and you can start using the API right away.

Go to the Managed Keys tab and click Create Key.

Give your key a name (e.g., “my-app-dev”) and click Create. Your secret key will be displayed once — copy it and store it securely. You won’t be able to see it again.

Use your key with any OpenAI-compatible client. Just change the base URL to https://proxy.gonkabroker.com/v1:

Terminal window
curl https://proxy.gonkabroker.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen/Qwen3-235B-A22B-Instruct-2507-FP8",
"messages": [{"role": "user", "content": "Hello!"}]
}'

That’s it. You’re now running inference on decentralized GPUs with standard billing.