To ensure the security and integrity of our API interactions, we have implemented an authentication mechanism that requires the use of an API Key. This API Key is a unique identifier that must be included in the header of each API request to authenticate the client making the request. By validating this key, we can confirm that the request is coming from a trusted source and grant access to the requested resources. It's crucial to keep this key confidential to prevent unauthorized access to the API.There are two ways to obtain an API Key:Option 1: Request a key#
Option 2: Manage keys in your administration#
You can also create and manage API Keys directly within your administration under Manage ā API, on the REST API-keys tab. From here you can create, view, and revoke the keys used to access the REST API.You can adjust which resources an existing key can access at any time; the description is fixed once the key has been created. Revoking a key immediately disables it and removes it from the overview.ā The REST API-keys tab is only available for administrations with a Pro, Premium or Enterprise subscription.Example#
curl --request GET 'https://api.logictrade.cloud/rest/v1/orders/' \
--header 'api-key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
Modified atĀ 2026-06-15 14:31:38