API Snap · Rate Limits

Api Snap Rate Limits

API Snap enforces rate limits per API key. Documented limits come from the pricing page as monthly request quotas (100 / 5,000 / 50,000 / 500,000 calls for Free / Hobby / Pro / Business tiers) and from the OpenAPI spec which declares a 429 response on every operation. Per-second or per-minute burst ceilings are not published on the public site as of profiling; the X-RateLimit-Limit and X-RateLimit-Remaining response headers are documented on the docs page and a structured 429 body returns `usage`, `limit`, and an `upgrade_url`. reconciled is false because per-second burst numbers are not publicly published.

5 Limits Throttle: 429 Quota: 429
Rate LimitingDeveloper UtilitiesSubscription Quotas

Limits

Free monthly quota api-key
requests_per_month · month
100
Free tier; 100 API calls/month across all 13+ endpoints. No credit card required.
Hobby monthly quota api-key
requests_per_month · month
5000
$9/month tier.
Pro monthly quota api-key
requests_per_month · month
50000
$29/month tier; "higher rate limits" advertised vs Hobby (specific per-second numbers not published).
Business monthly quota api-key
requests_per_month · month
500000
$99/month tier; advertises "custom rate limits" and an SLA guarantee.
Per-request burst ceiling api-key
varies
see https://api-snap.com/pricing — published as plan-tier rate limits without per-second numbers
API Snap does not publish per-second or per-minute limits. Pro and Business tiers advertise "higher" and "custom" rate limits respectively.

Policies

Single key across all endpoints
One API key (snp_ prefix) authorizes every endpoint in the platform; quotas and rate limits are enforced per key, not per endpoint.
Quota reset
Monthly request counters reset on the billing cycle anniversary.
Throttle response body
HTTP 429 responses include a JSON body with `usage`, `limit`, and an `upgrade_url` pointing to https://api-snap.com/pricing so clients can prompt users to upgrade in-product.
Rate limit headers
Every response includes X-RateLimit-Limit and X-RateLimit-Remaining headers so clients can implement adaptive throttling.
Custom limits at Business tier
The Business plan advertises "custom rate limits" - bespoke limits should be confirmed with sales.

Sources