Developer Documentation
API REFERENCE
Service Pricing
Fetch the latest pricing for all available services, including data plans, electricity DISCOs, and identity verification services.
GET
/api/v1/prices
Authorization
| HEADER | VALUE | REQUIRED |
|---|---|---|
Authorization |
Bearer YOUR_API_TOKEN |
Yes |
Developer Tip
This is a public endpoint but requires authentication. We highly recommend caching the response for at least 15 minutes to reduce latency in your application.
Example Request
cURLcurl -X GET "https://www.api.arewasmart.com.ng/api/v1/prices" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
Success Response (200 OK)
{
"status": true,
"message": "Prices fetched successfully",
"data": {
"services": [
{
"id": 1,
"name": "NIN Verification",
"price": 100.00
}
],
"data_plans": [
{
"id": 102,
"network": "MTN",
"plan_name": "1GB SME 30 Days",
"price": 250.00
}
]
}
}