Store
API Key Management
Generating an API Key requires an active Reseller Role (₹200 one-time unlock). Click the unlock button above to activate your reseller access.
Exclusive Reseller Pricing
Become a Reseller to unlock these wholesale prices directly via API or Website!
ProductDurationRetailReseller
BALA MOD V6
1 Hours₹18₹10
3 Hours₹45₹30
6 Hours₹75₹50
12 Hours₹140₹90
1 DaYs₹265₹195
AIM HACK
1 Hours₹15₹10
3 Hours₹30₹20
6 Hours₹45₹30
12 Hours₹60₹40
1 DaYs₹99₹65
7 DaYs₹280₹180
XRAG
1 Hours₹15₹10
3 Hours₹30₹20
6 Hours₹45₹30
12 Hours₹60₹40
1 DaYs₹99₹65
7 DaYs₹280₹180
DRIPE WIRE
6 Hours₹40₹25
12 Hours₹60₹40
1 DaYs₹100₹65
7 DaYs₹280₹180
GET/api/v1/products
List products & wholesale pricing
Returns available mod products, packages, duration strings, and your real-time wholesale reseller price.
products.sh
1curl -X GET "https://balamod.me/api/v1/products" \
2 -H "x-api-key: bm_live_your_key"
Sample 200 OK Response:
products_response.json
1{
2 "success": true,
3 "pricing_tier": "reseller_wholesale",
4 "products": [
5 {
6 "product_id": "136",
7 "name": "BALA MOD V6",
8 "packages": [
9 { "duration": "1 Hours", "retail_price": 18, "reseller_price": 10, "discount": "44%" },
10 { "duration": "12 Hours", "retail_price": 140, "reseller_price": 90, "discount": "36%" }
11 ]
12 },
13 {
14 "product_id": "133",
15 "name": "AIM HACK",
16 "packages": [
17 { "duration": "1 Hours", "retail_price": 15, "reseller_price": 10, "discount": "33%" }
18 ]
19 }
20 ]
21}
GET/api/v1/balance
Check wallet balance
Check your current rupee balance and user tier before making key purchases.
balance_request
1curl -X GET "https://balamod.me/api/v1/balance" \
2 -H "x-api-key: bm_live_your_key"
Sample 200 OK Response:
balance_200.json
1{
2 "success": true,
3 "balance": 850.00,
4 "role": "reseller",
5 "username": "krishmhatre34"
6}
POST/api/v1/buy-key
Instant key purchase
Deducts the wholesale price from your balance and immediately returns the generated key code.
Request Body Schema
product_idrequired— "136" (Bala Mod), "133" (Aim Hack), "149" (XRAG), "150" (Dripe Wire)
durationrequired— "1 Hours", "6 Hours", "12 Hours", "1 DaYs", "7 DaYs"
android_idoptional— Android hardware ID for key binding
buy_key_snippet
1import requests
2 
3res = requests.post(
4 "https://balamod.me/api/v1/buy-key",
5 headers={
6 "x-api-key": "bm_live_your_key",
7 "Content-Type": "application/json"
8 },
9 json={
10 "product_id": "133",
11 "duration": "1 Hours"
12 }
13)
14data = res.json()
15if data.get("success"):
16 print("Key:", data["key"])
17 print("New Balance: ₹" + str(data["new_balance"]))
18else:
19 print("Error:", data.get("error"))
Sample 200 OK Response:
buy_key_200.json
1{
2 "success": true,
3 "key": "BALA-FF-OB55-VIP-9X82KL",
4 "product_name": "AIM HACK",
5 "product_id": "133",
6 "duration": "1 Hours",
7 "price": 10,
8 "new_balance": 840,
9 "purchase_id": "pur_a83f19bc30",
10 "timestamp": "2026-09-26T13:40:00Z"
11}
HTTP Error Codes
StatusMeaningAction Required
200 OKRequest succeededKey or balance data is delivered
401 UnauthorizedMissing or invalid x-api-keyCheck your API key in panel above
402 Payment RequiredInsufficient balance in walletTop up balance in panel or store
429 Too Many RequestsRate limit exceeded (30 req/min)Wait 60 seconds before retrying
Need help with bot integration or Reseller unlock?
Reach out directly on Telegram for technical assistance, custom endpoints, or ₹200 Reseller activation.
Contact Admin (₹200 Reseller)