This section provides information about the authentication process for our developer API. To ensure secure access, developers must authenticate their requests.
- Authentication Methods
Basic Authentication
Basic Authentication is a simple way to authenticate requests. It uses a username and password pair encoded in Base64.
- How to Use
- Append the
Authorization
header with the Base64 encoded string ofusername:password
. - Example:
Authorization: Basic Zm9vOjEyMzQ=
- Append the
OAuth 2.0
OAuth 2.0 is a more flexible and secure authentication method. It allows third-party applications to access protected resources on behalf of a user.
- How to Use
- Obtain an access token from the OAuth 2.0 provider.
- Append the
Authorization
header with the access token. - Example:
Authorization: Bearer <access_token>
API Tokens
API Tokens provide a simple way to authenticate API requests without the need for a username and password.
- How to Use
- Obtain an API token from the developer dashboard.
- Append the
Authorization
header with the API token. - Example:
Authorization: Bearer <api_token>
For more information about API authentication, please visit our Developer Documentation.
API Authentication