Vanguard

Documentation

Everything you need to integrate Vanguard into your game.

Plans & Billing

Manage subscriptions, redeem license keys, and purchase plans.

Plans

PlanPriceRequests/minRequests/mo
Free (NONE)$03010,000
Pro$10/mo120100,000
Max$20/moUnlimitedUnlimited
Purchase plans via the pricing page. Plans are delivered as license keys that can be redeemed below. 20% discount for yearly purchases.

Redeem a License Key

POST/api/v1/vanguard/balance/redeem

Redeem a license key to add balance or activate a plan.

json
{
  "key": "XXXX-XXXX-XXXX-XXXX"
}
Response — 200 OK
{
  "success": true,
  "message": "Key redeemed successfully",
  "balance": 35
}

Purchase a Plan

POST/api/v1/vanguard/buy

Purchase a subscription plan using your account balance.

json
{
  "plan": "PRO",
  "autoRenew": true
}

Update Subscription

POST/api/v1/vanguard/subscription/update

Change your subscription plan or toggle auto-renewal.

json
{
  "plan": "MAX",
  "autoRenew": false
}

User Licenses

GET/api/v1/user/licenses?page={page}&limit={limit}&search={query}

List your purchased marketplace licenses with pagination and search.

POST/api/v1/shop/subscription/update

Update renewal settings for a marketplace subscription.