How do I authenticate API requests to Rapyd?

What should I include specifically in the header parameters to authenticate API requests?

Hey @Filip.bank - welcome to the community!

To authenticate API requests, you need to include specific header parameters:

  • access_key: Your unique access key provided by Rapyd.
  • salt: A unique random string for each request, recommended length is 8-16 characters.
  • timestamp: The current Unix time (in seconds).
  • signature: A calculated HMAC-SHA256 signature.

The signature is computed using the HTTP method, URL path, salt, timestamp, access key, secret key, and request body. For detailed instructions on calculating the signature, refer to Rapyd’s Authentication documentation.

Please let us know if you have any other questions about integrating with Rapyd.