Request Validations#
All requests to our API must include proper header authentication to ensure security and access control. The required headers are:x-api-key: Your unique API key.
x-api-secret: The corresponding API secret.
Failure to include these headers or providing invalid credentials will result in authentication errors. Below are examples of possible error responses:Missing User Credentials#
If either the x-api-key or x-api-secret headers are missing, the API will respond with the following error message:{
"success": false,
"message": "MISSING_USER_CREDENTIALS"
}
Invalid User Credentials#
If the provided x-api-key or x-api-secret headers do not have the expected format, the API will respond with the following error message:{
"success": false,
"message": "INVALID_USER_CREDENTIALS"
}
User Restriction#
If, for any reason, your user account has been blocked or restricted, you will receive a similar response specifying the reason for the failure in the "message" field.Modified at 2025-01-15 02:33:35