LeadArc Docsv1

Markdown for agents

This page as plain markdown, ready to paste into an LLM.

.md

Rate limits

Four numbers to design against, and the one that matters more than the rest.

Buckets

Per key, per minute. Every endpoint shows its bucket in the reference.

BucketLimitWhat lands here
read120 / minuteEvery GET served from our database
write60 / minuteEvery POST, PUT, PATCH and DELETE
upstream10 / minuteAnything calling out to EmailBison or a calendar: campaigns, campaign tags, campaign insights, event type slots, meetings, expand=campaign

Requests at once

At most 4 requests in flight per key. Over that is 429 too_many_concurrent.

This is the limit that matters most.

The per-minute numbers protect the month. This one protects the next thirty seconds. Keep your worker pool at 4 and you will never hit it.

Headers

http
x-ratelimit-limit: 120
x-ratelimit-remaining: 114
x-ratelimit-reset: 1785312060      # unix seconds when the window resets
x-api-browser-access: disabled     # no CORS on this API
retry-after: 23                    # on a 429 only

Watch x-ratelimit-remaining and slow down before it hits zero.

What counts

If you need more

Limits are not raised per key. In order: page with limit=200 instead of 50, filter on the server instead of pulling and discarding, cache what does not change every minute, then talk to us.

Base URL https://api.leadarc.io/v1. Generated from the API source.