πŸ“Œ Authentication

πŸ” API Request Signing

Each request must include:

  • X-API-Key

  • X-API-Signature

  • X-API-Timestamp

Signature:

HMAC_SHA256(JSON.stringify(payload) + "." + timestamp, api_secret)

API Request Signing

API requests must include a signature generated using the API secret:

  • Request Headers:

    • X-API-Key: {api_key}

    • X-API-Signature: {signature}

    • X-API-Timestamp: {timestamp}

Last updated