Base URL
The Trimida API is built on REST principles. All requests must be made over HTTPS to ensure data security, integrity, and privacy. HTTP requests are not supported.
All API requests should be sent to the following base URL:
https://trimida.com/api/v1/Authentication
Authentication is performed using an API key. You must include anAuthorization header with every request. The header value should be in the following format:
Authorization: Bearer tr_xxxxxxxxxYou can generate and manage your API keys in your account dashboard. Click your email address in the bottom-left corner, then selectAPI from the dropdown menu.
Response Codes
The Trimida API uses standard HTTP status codes to indicate whether a request was successful or failed.
In general, 2xx codes indicate success,4xx codes indicate client errors, and5xx codes indicate server-side errors.
| Status | Description |
|---|---|
| 200 | Request completed successfully. |
| 400 | Invalid request. Check the provided parameters. |
| 401 | Missing or invalid API key. |
| 404 | Requested resource was not found. |
| 5xx | Server error on Trimida infrastructure. |