Skip to content

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.

  1. Sign in to Vikasit Code Zen with your GitHub account.
  2. Navigate to the Go section and add balance to your account.
  3. Copy your API key.
  4. 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/completions

Use your Go API key as the bearer token.

Terminal window
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:

ModelModel IDMultiplier
Flashflash1x
Standard/3std33x
Codercoder7x
Maxmax15x
Fastfast18x

Rate limits

Go uses the same rolling window rate limit system as subscription plans:

WindowDescription
5 hourRolling 5-hour usage cap
7 dayRolling 7-day usage cap
30 dayRolling 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.

/connect

The 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

FeatureGo (Pay-as-you-go)Subscription (Lite/Pro/Max)
BillingPrepaid balanceMonthly subscription
Best forExternal apps, APIsDaily coding in the TUI
Rate limitsBased on balance tierBased on plan tier
All 5 modelsYesYes

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.