Introduction#
In this section, we'll explain how to use your API key to authenticate requests to our service. The API key is a unique identifier that you should include in all API requests to gain access to our resources.Your API key should be kept confidential and only used by those authorized to access your account. Do not expose your API key in publicly accessible areas such GitHub, client-side code, and so forth.Using the API Key#
You will need to include your API key in the header of each request. The header key to use is x-api-key. Below, you'll find examples of how to include your API key in both GET and POST requests.In the examples provided above, we use /api-endpoint as a placeholder for the actual API endpoint you will be interacting with. When implementing these examples in your own applications, you should replace /api-endpoint with the specific endpoint path relevant to the action you want to perform or the resource you want to access.For instance, our API might have various endpoints like:
/v1/account for retrieving account information.
/v1/users for accessing user data.Modified at 2024-04-04 04:37:51