requests library, Java’s HttpClient, etc.| Header | Description | Example |
|---|---|---|
| Content-Type | Format of the request body, typically application/json | application/json |
| Authorization | Authentication information, in the format of Bearer | Bearer token |
Bearer prefix followed by your token in the Authorization header of each request.| Status Code | Meaning |
|---|---|
| 400 | Bad request, usually due to malformed request body |
| 401 | Unauthorized, possibly due to an invalid or missing API Key |
| 403 | Forbidden, you do not have permission to perform this action |
| 404 | Resource not found |
| 500 | Internal server error |