Developer API Hub v5.0

API Documentation & Manual

Automate order fulfillment, check wallet balances, and fetch live product pricing programmatically.

System Architecture

The Kendy Gaming API allows authorized reseller partners and external platforms to place automated top-up orders, verify game player accounts, and monitor wallet credits via RESTful JSON interfaces.

Instant Sync

Sub-second execution and instant callback notifications for completed orders.

HMAC Signature

Asymmetric public/private key authentication protecting reseller balances.

Authentication Headers & Credentials

Pass your public_key and private_key in your JSON payload for every authenticated request.

API Security Notice

Never expose your Private Secret Key in client-side code or public repositories. If compromised, regenerate your keys immediately in Account Settings.

Base API URL

https://kendyenterprises.in/api/
POST

Fetch Wallet Balance

Request payload parameters:

Field Type Description
public_key String Your Reseller Public Key ID
private_key String Your Reseller Private Secret Signature
200 OK JSON Response Success
{
  "success": true,
  "balance": 5000.50,
  "currency": "INR",
  "status": "AUTHORIZED"
}