Banks & Card Bins

Secured using Frim.js Technology (Neuxon-x Security)
circle-info

Good to know: The Quaapay Wallet APIs are currently in version 1.0. If any upgrades are made in the future, we will create a new documentation webpage. To stay updated, subscribe to our news feed for daily alerts regarding upgrades or new releases of the Quaapay APIs. Please understand that upgrades, even for version 1.0, may occur to enhance and advance our data structures, not just for arbitrary reasons.

Getting your Product key

The product key is a legitimate key provided to you by Quaapay Wallet. It serves as the official access key that allows you to interact with and use our APIs. Without this key, you won't be able to integrate our APIs into your products.

  1. Public Product Key -> The public key is provided to all business account owners on Quaapay Wallet. It is primarily used to access our public APIs, which can be integrated into your third-party products.

  2. Private Product Key -> This is a private key provided to trusted entities, such as established companies and high-trust business owners, by Quaapay Wallet. It grants access to the private sections of our APIs.

Making your first "Request"

"All of our APIs are consolidated under a single URL, 'https://api.quaapay.ngarrow-up-right,' and their datasets are housed at this location, specifically 'https://apis.quaapay.ng/v1/arrow-up-right'."

Here's the equivalent cURL command to make an HTTP GET request to https://api.quaapay.ng:

Explanation of the command:

  • curl: The command-line tool for making HTTP requests.

  • -X GET: Specifies the HTTP method as GET.

  • https://api.quaapay.ng: The URL you want to send the GET request to.

This cURL command will send a GET request to the specified URL and display the response in the terminal.

circle-info

Good to know: Congratulations, my Hero! You've used our api endpoints to successfully make your first request, and so far, so good. You can now see how simple it is to do this. Make your first request

To make your first request, send an authenticated request to the our endpoint. This will create a pet, which is nice.

Access to all our Version 1.0 api endpoints.

POST https://api.quaapay.ng

Creates a new pet.

Request Body

Name
Type
Description

No Body is requred

string

Left empty

Last updated