API Authentication

Obtaining Your API Key

To access the API, you need an API key. Please contact our sales team to obtain your key.

Authentication Type

The API uses Basic Authentication for security.

Authentication Format

To authenticate, include the Authorization header in every API request. The header should contain the following format:

Authorization: Basic <Base64 encoded username:api_key>

Where:

  • username is your username.
  • api_key is the API key you received.

Example

For example, if your username is user1 and your API key is abc123, the base64 encoded string for user1:abc123 will be included in the Authorization header as follows:

Authorization: Basic dXNlcjE6YWJjMTIz

Ensure to replace dXNlcjE6YWJjMTIz with your actual base64 encoded credentials.