API Authentication
Create API Key
Before using our APIs, you will need to create an API key. This key will allow you to access our APIs and use them in your application.
For platforms managing merchants or sub-merchants, multiple API keys can be created.
To create an API key with specific permissions, follow these steps:
Log in to your merchant portal.
Navigate to the API Management section from side bar.
Click on the "Create API Key" button.
Enter a name for your API key.
Select the desired permissions, including withdrawal permissions, IP whitelist, and any other necessary permissions.
Click "Create" to generate the API key.
Once you click "Create", both the API key and Secret key will be generated simultaneously.
The API key will be visible on the portal, but the Secret key will not be displayed again.
Important: Make sure to save the Secret key immediately, as it cannot be retrieved later.
For creating multiple API keys, follow steps from 3 to 9.
By selecting the appropriate permissions during the API key creation process, you can control the actions and access levels associated with the API key, ensuring security and proper usage.
How to use our API
Before accessing the APIs, please complete the following configuration steps:
Generate the Header Value -
1.1 Generate Nonce: 32-character alphanumeric string.
Java example for reference:
1.2 Generate Timestamp: UnixTimestamp in milliseconds
Java example for reference:
1.3 Generate Payload :
Java example for reference:
1.4 Compute Signature:
Java example for reference:
1.5 Include Headers:
Content-Type: application/jsonEzeebit-Certificate-SN:YOUR_API_KEYEzeebit-Timestamp: <TIMESTAMP>Ezeebit-Nonce: <NONCE>Ezeebit-Signature: <SIGNATURE>
Example Request:
Last updated