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 API Key Authentication for secure access.
Authentication Format
To authenticate, include the Authorization
header in every API request. The header should contain the following format:
Authorization: Basic YOUR_API_KEY
Where:
YOUR_API_KEY
is the API key you received.
Example
For example, if your API key is abc123
, the Authorization
header as follows:
Authorization: Basic abc123
Updated 6 days ago