API Documentation
Login Get API Key

Service Pricing

Fetch the latest pricing for all available services, including data plans, electricity DISCOs, identity verification services (NIN, BVN), and more.

Endpoint

GET /prices

Headers

Header Value Required
Authorization Bearer YOUR_API_TOKEN Required
This is a GET request, so no body parameters are required. We highly recommend caching the response of this endpoint on your end for at least 15 minutes to improve performance.

Example Request

cURL
curl -X GET "https://arewasmart.com.ng/api/prices" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

Example Response

JSON
{
    "status": true,
    "message": "Prices fetched successfully",
    "data": {
        "services": [
            {
                "id": 1,
                "name": "NIN Verification",
                "price": 100.00
            },
            {
                "id": 2,
                "name": "BVN Checking",
                "price": 50.00
            }
        ],
        "data_plans": [
            {
                "id": 102,
                "network": "MTN",
                "plan_name": "1GB SME 30 Days",
                "price": 250.00
            }
        ]
    }
}