Quickstart
This guide walks you through signing up, creating an API key, adding funds, and making your first request.
1. Create an account
Section titled “1. Create an account”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.
2. Add funds
Section titled “2. Add funds”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.
3. Create an API key
Section titled “3. Create an API key”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.
4. Make your first request
Section titled “4. Make your first request”Use your key with any OpenAI-compatible client. Just change the base URL to https://proxy.gonkabroker.com/v1:
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.
Next steps
Section titled “Next steps”- Create an API Key — learn the difference between managed and direct keys
- Your First Request — examples in Python, JavaScript, and curl
- Migrating from OpenAI — switch existing OpenAI code in two lines