Authentication

To make API calls on Parallex Pay, you’ll have to pass a Bearer Token To generate a token you simply

  1. Call https://seerbitapi.com/api/v2/encrypt/keys

  2. Pass your public key and secret key.

  3. You'll be authenticated and receive a token to process further API calls.

Authorization: Bearer {token}

Basic authentication is a simple authentication scheme built into the HTTP protocol. The client sends HTTP requests with the Authorization header that contains the word Basic followed by a space and a base64-encoded string publicKey:privateKey.

The token is gotten like this, base64Encode(publicKey:privateKey);

Authorization: Basic {token}

Last updated