Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt

Use this file to discover all available pages before exploring further.

The Vouchmark API rate-limits aggressively at the auth surface (per IP) and conservatively elsewhere (per access token). Limits are quoted as requests / window; the response includes the standard RateLimit-* headers so you can plan retries.
SurfaceLimitWindow
Auth (/login, /signup, /forgot-password, …)5015 min, per IP
Verification kickoffs (/check-firstin, /verifyTin, /verifyBill, /verifyCac*)201 min, per token
Dashboard reads (/dashboard/*, /monitoring/*)1201 min, per token
Trust Badge public verify (/trust-badge/verify)6001 min, per IP
Everything else601 min, per token

When you hit a limit

The response is 429 Too Many Requests with:
RateLimit-Limit: 60
RateLimit-Remaining: 0
RateLimit-Reset: 23
Retry-After: 23
{
  "success": false,
  "statusCode": 429,
  "message": "Too many requests. Try again in 23 seconds.",
  "error": "RATE_LIMITED"
}
Respect Retry-After (it’s in seconds). On repeated 429s, back off exponentially with jitter — don’t retry in a tight loop.

Increasing limits

These ceilings cover normal product use. If you’re building a high-throughput integration, contact support@vouchmark.com with your use case — we can raise individual limits per token.