Public
Documentation Settings

Abisohub - API Documentation

Abisohub is a value added service platform that provides individual and businesses with access to airtime, data bundles, electricity bills, cable tv, alpha topup, smile subscription, and exam pin.

We have designed our website to accommodate user needs. Providing users of our platform the opportunity to save cost, make fast, secured, efficient and rewarding purchases and bill payments.

GETGet User Details

https://abisohub.com/api/user/
HEADERS
Authorization

Token 123456

Content-Type

application/json

Example Request
curl
curl --location 'https://abisohub.com/api/user/' \
--header 'Authorization: Token 123456' \
--header 'Content-Type: application/json' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTVerify Meter Number

https://abisohub.com/api/electricity/verify/
HEADERS
Authorization

Token 123456

Content-Type

application/json

Bodyraw (json)
json
{
    "provider": "Kano Electric",
    "meternumber": "58000041838",
    "metertype": "prepaid"
}
Example Request
curl
curl --location 'https://abisohub.com/api/electricity/verify/' \
--header 'Authorization: Token 123456' \
--header 'Content-Type: application/json' \
--data '{
    "provider": "Kano Electric",
    "meternumber": "58000041838",
    "metertype": "prepaid"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GETVerify IUC Number

https://abisohub.com/api/cabletv/verify/
HEADERS
Authorization

Token 123456

Content-Type

application/json

Bodyraw (json)
json
{
    "provider":"27", 
    "iucnumber":"7029702250"
}
Example Request
curl
curl --location --request GET 'https://abisohub.com/api/cabletv/verify/' \
--header 'Authorization: Token 123456' \
--header 'Content-Type: application/json' \
--data '{
    "provider":"27", 
    "iucnumber":"7029702250"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTBuy Airtime Topup

https://abisohub.com/api/airtime/
HEADERS
Authorization

Token 123456

Content-Type

application/json

Bodyraw (json)
json
{
    "network": "1",
    "amount": "50",
    "phone": "08065601853",
    "ported_number": true,
    "ref" : "Airtime_123345",
    "airtime_type": "VTU"
}
Example Request
curl
curl --location 'https://abisohub.com/api/airtime/' \
--header 'Authorization: Token 123456' \
--header 'Content-Type: application/json' \
--data '{
    "network": "1",
    "amount": "50",
    "phone": "08065601853",
    "ported_number": true,
    "ref" : "Airtime_123345",
    "airtime_type": "VTU"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers