Phone:
(234)810-672-5551
Physical address:
58 3rd Avenue FHA
Lugbe Abuja.
Sorry. You must be logged in to view this form.
Sorry. You must be logged in to view this form.
Newcomers, opt for "REGISTER," while those already registered, choose "LOGIN."
[ultimatemember_notifications]
The Payoxem API is an HTTPS POST API that allows you (developers) to integrate all virtual top-up (VTU) and bills payment services available on the payoxem.ng platform with your application (websites, desktop apps & mobile apps). You can also start your own VTU business by integrating our API and reselling our service. It is super easy.
Our API is very easy to consume and should not give you any challenge. Should incase, you have issues integrating our API on your apps, kindly reach out to us via any of our support channels.
Your account must be verified before you can start using our API. Your API key can also be found on your account settings page, while logged-in.
The Payoxem Base API URL is https://payoxem.ng/api/
All API requests need to be authenticated through the Authorization header. The payoxem.ng API uses HTTP Basic authentication to authenticate requests. You need to always pass your USERNAME and API KEY through your request header. Your connection is secure.
You will need to pass your USERNAME and API KEY through your request header. See example below
Authorization: Basic YXBpa2V5OjY5Y1dxVW8wNGhpNFdMdUdBT2IzMmRXZXQwalpkVzBtSkNjOU9yLUxEamNIUXFMSzJnR29mS3plZg==
You can also use cURL. The following is a curl example using the HTTP Basic Authorization header with a line break and spaces for readability.
curl -X POST \ -H 'Authorization: Basic YXBpa2V5OjY5Y1dxVW8wNGhpNFdMdUdBT2IzMmRXZXQwalpkVzBtSkNjOU9yLUxEamNIUXFMSzJnR29mS3plZg==' \
'https://payoxem.ng/api/<endpoint-route>'
All responses from the payoxem.ng API are returned in JSON format.
{ "email": "<your-account-email-address>" }{
"basic_infos": {
"firstname": "Payoxem",
"lastname": "API User",
"email": "apiuser@payoxem.ng",
"package": "reseller"
},
"wallet_funds": {
"naira_balance": "2000",
"usd_balance": null
},
"virtual_accounts": {
"wema": 0123456789,
"moniepoint": 9876543210,
"providus": 1234567890,
"account_name": payoxem
}
}
{ "error": "Email is Missing." }
{ "error": "Invalid Method Specified!" }
{ "error": "Account Not Found." }