API Call Calculator
PremiumThis feature is available on our Premium and Enterprise plans. UpdatedEstimate the number of API calls that your Salesforce integration will make for its initial and incremental syncs. This can help you figure out if your Salesforce integration will exceed your Salesforce plan limits.
Bulk API | REST API We require one REST call at the start of each sync, to fetch the record's fields configuration. | |
---|---|---|
Number of API calls for initial sync For the initial sync, we fetch all data going back to the epoch (Jan 1st 1970). We break that data down into 30-day increments, and that's how we get to such a specific (and static) number here. | ||
Number of API calls for each incremental sync | ||
Number of API calls per day | ||
Number of API calls per week | ||
Number of API calls per month |
This calculator is for estimation purposes only. It cannot provide an exact count of API calls consumed by your integration. Your Salesforce API limits will vary depending on your Salesforce plan. See Salesforce’s documentation to learn more about Bulk API and REST API limits.
Our Salesforce integration attempts to use Salesforce’s bulk APIs whenever possible, which can handle up to 10000 records per request, depending on your plan. We fall back to the REST API, where each call can retrieve 2000 records per request, when we cannot use the Bulk API. We cannot use the Bulk API when:
- your records contain fields with base64- or object-formatted values due to limitations with Salesforce’s output format.
- the record type does not support Bulk APIs (ex: KnowledgeArticle, CaseStatus).
This calculator is based on a normal integration scenario and cannot account for all possible integration scenarios. For example, if we receive a temporary error from the Salesforce API we’ll retry operations up to 3 times, which increases your API usage.