Guides
Use Gonka24 with coding agents
Most coding tools share the same OpenAI-compatible connection pattern: base URL, API key, and a live model ID.
Before you configure
Create a key in the Gonka24 dashboard and fetch the current model list before opening your agent settings. The labels in third-party UIs change, but the values below stay the same.
- Base URL
- https://api.gonka24.com/v1
- Authentication
- Bearer sk-...
- Model
- GET /v1/models
Use a live model ID.
The catalog changes. Call GET /v1/models with your API key and copy an id from the response instead of relying on a model name in a guide.
curl https://api.gonka24.com/v1/models \
-H "Authorization: Bearer $GONKA24_API_KEY"Cursor
- Open the model or provider settings and choose a custom OpenAI-compatible connection if it is available in your Cursor plan.
- Set the base URL to https://api.gonka24.com/v1 and paste your Gonka24 API key.
- Add or select the exact model ID returned by GET /v1/models, then send a small chat request.
Cursor product settings and plan availability can change. If the custom provider field is absent, use the supported OpenAI-compatible path in another client.
Cline
- Choose the OpenAI-compatible provider in the extension settings.
- Enter the Gonka24 base URL, API key, and an exact model ID from /v1/models.
- Start with a short non-tool request before enabling workspace actions.
Tool calling can vary by model and upstream route. Validate it with a small test task before granting file or shell access.
Continue
- Add an OpenAI-compatible model/provider in your Continue configuration.
- Use the Gonka24 base URL and API key, then set the exact discovered model ID.
- Run a chat completion first; configure autocomplete separately if your Continue version distinguishes it from chat.
Keep the API key in the local secret mechanism or environment configuration; do not commit it with the repository config.
Aider
Aider can use the OpenAI-compatible endpoint through environment variables. Replace the model placeholder with a model ID returned by the API.
export OPENAI_API_BASE="https://api.gonka24.com/v1"
export OPENAI_API_KEY="$GONKA24_API_KEY"
aider --model "<model-id-from-/v1/models>"Troubleshooting
Model not found: fetch /v1/models again and copy the returned ID exactly.
401: create a new dashboard API key and verify that the agent is sending it as a Bearer token.
Unexpected agent behavior: test a plain chat request before enabling agent tools, file access, or long-running tasks.
