Bank Related Api

Access to all of our bank apis codes and urls can be found here. Please read the rules and guidelines we have provided carefully and adhere to them strictly to prevent any security leaks.

circle-info

Good to know: The quaapay wallet APIs are currently in version 1.0; should there be an upgrade, a new documentation webpage will be generated. You can subscribe to our news feed to receive daily alerts whenever we decide to upgrade or release a new version of the quaapay apis. Please note that from time to time we may decide to make an upgrade even to version 1.0, not to do simply what we feel like, but to upgrade and advance some of our data structures.

Getting Public Hash Api key

There are essentially two types of public Quaapay hash keys: live public hash keys and demo public hash keys.

  1. Live public hash key -> This entails carrying out real-world transactions for an already-running project.

  2. Demo public hash key -> This is primarily for projects that aren't live yet but are still in testing mode; it can't handle real transactions, but it may be used to test it out.

Making your first "Request"

All of our APIs are contained in a single URL, "https://apis.quaapay.ng," and their datasets are all kept at that location (i.e., "https://apis.quaapay.ng/v1/").

// Some code
curl -X GET https://apis.quaapay.ng

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

Explanation of the command:

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

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

  • https://apis.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://apis.quaapay.ng/index.php

Creates a new pet.

Request Body

Name
Type
Description

No Body is requred

string

Left empty

Last updated