Introduction
Easy to follow guide to connect with Public TrueCold’s API
Getting started
Welcome! Read this page to learn a bit more about TrueCold Public API and how to integrate your data-input tools with our platform.
If you want to book a demo, get in contact with support@truecold.io.
1. Security
At TrueCold we take security very seriously, so our API validates every request. We make sure that the right scope is returned every time. To do so, we use private API keys. To get one, log in at truecold.io and head to the account page. Under the Api credentials page, you will be able to generate or delete your api keys.
Due to security reasons, you will only see your api key once. Make sure you save it properly.
You will need to have the role ADMIN to be able to manage API keys. If you have any questions, get in contact with our Support Team.
In every request, you will need to provide an API key in the headers:
2. Rate limits
To ensure that everyone can use our API, we allow up to 5 requests every 10 seconds (sliding window). If you think you need more requests per 10 seconds, please, contact with our Support Team and we will study your case individually.
If you exceed that amount of requests, you will receive a 429 Too Many Requests
response, with the following structure:
property | type | description |
---|---|---|
isError | boolean | If true, api calls exceeded limits. |
message | string | Gives information about the error. |
limit | number | Maximum api calls per 10 seconds. |
reset | number | Time in seconds until you sliding window finishes and you can make a new call. |