API Reference Version 4
X-API-Key: <your_api_key>
to all API requests (case insensitive).
Here’s an example of a request to the API:
Core
endpoints and integrations including LinkedIn
and Sales Navigator
.
Real-Time Limitation | What This Means |
---|---|
No Multi-Step Actions | ❌ You cannot chain actions (e.g., “Search → Enrich → Message”) in one call. This logic must be handled in your code. |
No CRON/Scheduling | ❌ You need to implement your own scheduling and retry mechanisms. |
No Queuing | ❌ When rate limits are hit, requests fail immediately rather than being queued. |
Fixed Rate Limits | ✅ You must check your usage via an API endpoint instead of relying on automatic queue management. |
Concurrency Limits | ✅ For LinkedIn-related actions, we limit processing to one request per account to prevent detection. |
Single Input Processing | ✅ Each API call can only process one input, requiring different handling for bulk operations. |
Real-Time Limitation | Async Mode Solution |
---|---|
No Multi-Step Flows | ❌ Will remain as a limitation |
No Scheduling | ✅ Will support CRON-based scheduling through dedicated Schedule Mode |
No Queuing | ✅ Will automatically queue requests when rate limits are reached |
Fixed Rate Limits | ✅ Will handle batching and time distribution automatically |
Concurrency | ✅ Will enable safe parallel processing |
Single Input | ✅ Will support bulk processing with thousands of records per API call |