← Slimpay.ng

Used by every "Try It" panel across these docs to call app.slimpay.ng for real. Get one from Authentication — register or log in, then paste the token here. Stored only in this browser (localStorage), never sent anywhere but the Slimpay API, and auto-cleared after 8 hours.

Bills & Utilities

Airtime & Data

Instant delivery for MTN, Airtel, Glo, and 9mobile. Both purchase endpoints debit the wallet directly — no checkout redirect.

Buy airtime

POST /bills/airtime Requires Auth
bash
curl https://app.slimpay.ng/api/v1/bills/airtime \
  -H "Authorization: Bearer {token}" \
  -H "Content-Type: application/json" \
  -d '{
    "network": "MTN",
    "phone_number": "08012345678",
    "amount": 2000,
    "transaction_pin": "1234"
  }'
POST /bills/airtime

List data plans

GET /bills/data/plans Requires Auth
bash
curl "https://app.slimpay.ng/api/v1/bills/data/plans?network=MTN" \
  -H "Authorization: Bearer {token}"
GET /bills/data/plans

Buy a data bundle

POST /bills/data Requires Auth
bash
curl https://app.slimpay.ng/api/v1/bills/data \
  -H "Authorization: Bearer {token}" \
  -H "Content-Type: application/json" \
  -d '{
    "network": "MTN",
    "phone_number": "08012345678",
    "plan_id": "mtn-2gb-30days",
    "amount": 1000,
    "transaction_pin": "1234"
  }'
POST /bills/data
Pricing

No platform fee on airtime or data — you pay face value. See the pricing page for the full fee breakdown.