We offer two main APIs, each with different usage characteristics and limits:
1. API Simple - documentation
Request Nature: Each API call to this interface is designed to handle data for a single client.
Call Limit: You can make up to 100 calls per minute.
Practical Implication: Since each call represents one client, this means you can process data for approximately 100 clients per minute through this interface.
For example: If you want to update details for 50 different clients, you will need to make 50 separate API calls.
2. API V1 - documentation
Request Nature: This interface is designed for scenarios requiring the processing of a large number of clients in a single call (Batch processing). Each call can contain data for hundreds of clients.
Call Limit: You can make up to 30 calls per minute.
Practical Implication: The actual volume of clients you can transfer depends on the number of clients you include in each call.
For example: If you send data for 500 clients in each call, you can transfer: 30 calls/minute×500 clients/call=15,000 clients per minute