Mobile Recharge Service - Official API Documentation
| Header | Value |
|---|---|
| Authorization | Bearer YOUR_ACCESS_TOKEN |
| Accept | application/json |
| Content-Type | application/json |
https://wafitelecom.net/api/mobile-recharge
IP restriction enabled. Requests must be sent from registered server IP.
| Parameter | Type | Required | Description |
|---|---|---|---|
| mobile_number | string | Yes | 10-digit Afghanistan mobile number |
| amount | number | Yes | Min: 25 AFN - Max: 4000 AFN |
{
"mobile_number": "0791234567",
"amount": 100
}
{
"success": true,
"message": "Top-up Transaction Successful!",
"data": {
"id": 15,
"customer_id": 3,
"address": "0791234567",
"amount": 100,
"network": "Roshan",
"price": 100,
"created_at": "2026-02-11 10:15:22"
}
}
curl -X POST https://wafitelecom.net/api/mobile-recharge \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"mobile_number": "0791234567",
"amount": 100
}'