API Quickstart
Things to know before using an API
Prerequisite
Basic to Call our API
Base Headers
{
apikey: string; // Your API key obtained from the developer portal
signature: string; // HMAC signature of the request
timestamp: string; // Current timestamp in milliseconds (Date.now().toString())
}Header Requirements
- Headers are case-sensitive
- Values must be strings
- Timestamp must be in millisecondsHMAC Signature Generation
Example 1: GET Method API without Body Payload.
Example 2: POST Method API with Body Payload.
Last updated