Home
version 1.0
Introduction
Understand the core concepts of the API, including authentication, response codes, and request structure.

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_xxxxxxxxx

You 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.

StatusDescription
200Request completed successfully.
400Invalid request. Check the provided parameters.
401Missing or invalid API key.
404Requested resource was not found.
5xxServer error on Trimida infrastructure.