Authentication
When it comes to interacting with APIs, authentication is a critical step to ensure secure communication between your application and the API service. API authentication is performed via HTTP Bearer Auth, which involves including your API key in the HTTP request headers, following the Bearer prefix. This method verifies your identity and grants you access to the API's resources, ensuring that only authorized users can make requests.
AXSMarine uses the header Authorization to authenticate requests.
To obtain an API token, please contact your account manager.
Example
Error Codes
401 UNAUTHORIZED
The request did not provide an "Authorization" header, the content of this header was incorrect or the token provided is incorrect.
403 FORBIDDEN
The request did provide a valid token, however this token does not have permission to access this resource.
429 TOO MANY REQUESTS
The request did provide a valid token with correct permissions, however this token exceeded its number of request per specific time.