get http://api.pandascrow.io/sandbox/index/services/bills/fetch
This endpoint would allow you to fetch all bills we service with Pandascrow.
[GET] {{baseurl}}/sandbox/index/services/bills/fetch
Bill Payments
To fetch all bill payments pandascrow services, you'll need to pass in a category parameter.
Param | Required? | Description | type |
---|---|---|---|
category | Yes | Bill payment are sorted into categories (e.g all, airtime, internet, cable, betting, utility, school, and travel) | String |
API Object
{
"status": 200,
"data": [
{
"id": 1,
"name": "MTN",
"category": "airtime",
"img_src": "https://api.pandascrow.io/assets/img/services/ng/mtn.png",
"country": "Nigeria",
"country_symbol": "NG"
},
{
"id": 2,
"name": "GLO",
"category": "airtime",
"img_src": "https://api.pandascrow.io/assets/img/services/ng/glo.png",
"country": "Nigeria",
"country_symbol": "NG"
},
{
"id": 3,
"name": "AIRTEL",
"category": "airtime",
"img_src": "https://api.pandascrow.io/assets/img/services/ng/airtel.png",
"country": "Nigeria",
"country_symbol": "NG"
},...
]
}
curl -L -X GET '{{baseurl}}/sandbox/index/fetch/services' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'Appid: appid'