Go
Pay-as-you-go API access for external apps.
Vikasit Code Go is pay-as-you-go API access to Vikasit’s 5 AI models. It is designed for external applications, scripts, and integrations that need to call Vikasit models outside of the Vikasit Code TUI.
How it works
Go uses a prepaid balance system. You add funds to your account and are charged per request based on the model you use.
- Sign in to Vikasit Code Zen with your GitHub account.
- Navigate to the Go section and add balance to your account.
- Copy your API key.
- Use the API key in your application to make requests.
Adding balance
You can add balance to your Go account from the console. Funds are drawn down as you make API requests.
API endpoint
All Go models are accessible through a single API endpoint:
https://vikasit.ai/zen/go/v1/chat/completionsUse your Go API key as the bearer token.
curl https://vikasit.ai/zen/go/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "coder", "messages": [ {"role": "user", "content": "Explain async/await in JavaScript"} ] }'Available models
All 5 Vikasit models are available through Go:
| Model | Model ID | Multiplier |
|---|---|---|
| Flash | flash | 1x |
| Standard/3 | std3 | 3x |
| Coder | coder | 7x |
| Max | max | 15x |
| Fast | fast | 18x |
Rate limits
Go uses the same rolling window rate limit system as subscription plans:
| Window | Description |
|---|---|
| 5 hour | Rolling 5-hour usage cap |
| 7 day | Rolling 7-day usage cap |
| 30 day | Rolling 30-day usage cap |
Go rate limits are separate from subscription rate limits. The same token multipliers apply — using Coder (7x) costs 7 times more budget than Flash (1x).
Using Go with Vikasit Code
You can also use your Go balance inside the Vikasit Code TUI. Run the /connect command and select Vikasit Code Go.
/connectThe model id in your Vikasit Code config uses the format vikasit-go/<model-id>. For example, for Coder, you would use vikasit-go/coder in your config.
Go vs Subscription
| Feature | Go (Pay-as-you-go) | Subscription (Lite/Pro/Max) |
|---|---|---|
| Billing | Prepaid balance | Monthly subscription |
| Best for | External apps, APIs | Daily coding in the TUI |
| Rate limits | Based on balance tier | Based on plan tier |
| All 5 models | Yes | Yes |
You can have both a subscription and a Go balance active at the same time. They use separate rate limit budgets.
Privacy
All models are hosted in India by Chandorkar Technologies. We follow a zero-retention policy and do not use your data for model training.
Contact us if you have any questions.