Enrichments
Searches
What counts as a request
Every API call counts toward the rate limit, regardless of whether it returns data. Empty results and account management calls (get_account, get_billing, get_usage) all count as requests.
Check where you stand
Before assuming you’ve hit a wall, check your current position.get_account, get_billing, and get_usage are free — they never cost tokens.
get_account — live rate-limit standing
get_account returns a fair_use object that mirrors the tables above: enrich and search, each split into records and requests, over the 5h and 1w windows. Each window reports limit, used, remaining, and resets_at — so you can see exactly how much headroom is left and when the window rolls over.
resets_at of null means the window hasn’t started counting yet (nothing used); once you make calls it carries the ISO 8601 timestamp when that window resets.
get_usage — consumption history
get_usage shows how many calls you’ve actually made over a period, broken out by day plus a totals block — calls, with_data, without_data, and failed. Use it to spot bursts that are pushing you toward the 5-hour caps and to confirm which runs are driving your volume.
Ask your connected agent “check my MoltSets rate-limit headroom” and it will read these for you.
Staying within the limit
A few approaches to keep your usage within bounds:Spread your automations out
If you’re running scheduled tasks, split them across 2–4 runs per day rather than one large burst. Smaller, more frequent runs are easier to keep under the per-second and per-minute caps.Use batching with pauses between batches
For high-volume operations — say, updating 10,000 leads — don’t fire all requests at once. Instead:- Group your calls into batches of 100
- Wait 2 seconds between each batch
- Continue until all requests are processed
Rate limit errors
When you exceed your plan’s rate limit, the API returns a429 Too Many Requests response:
429 responses.
Handling rate limits
Exponential backoff is the recommended approach. When you receive a429, wait before retrying:
linkedin_to_mobile_phone supports up to 100 linkedin_urls per call) let you reduce total request count significantly.