Skip to main content

Rate Limiting

The Tuesday Leads API implement rate limiting to ensure fair usage and maintain service quality for all users.

Rate Limit Details

Standard Rate Limit

requests per minute

Average Response Time

seconds per request

Rate Limit Exceeded: Requests over the limit will receive HTTP 429 Too Many Requests. Additional limits may apply for high-traffic usage patterns.

Rate Limit Headers

Every API response includes headers to help you track your usage:
  • X-RateLimit-Limit: Total requests allowed per minute
  • X-RateLimit-Remaining: Requests remaining in current window
  • X-RateLimit-Reset: Unix timestamp when the limit resets

Credit System

The Tuesday APIs use a credit-based pricing model where different operations consume different amounts of credits.

Base Credit Costs

OperationBase CreditsDescription
Basic Profile Lookup1Standard profile data without enrichment
Company Search1Basic company information
People Search1Search for people with filters

Additional Credit Costs

Some enrichment features require additional credits:
Adding include_email=include to any people request costs an additional 2 credits per result.Example:
Adding include_phone=include to any people request costs an additional 3 credits per result.Example:
Company profile enrichment options each add 1-2 credits:
  • funding=include: +1 credit
  • extra=include: +1 credit
  • technology=include: +2 credits
  • website_traffic=include: +1 credit
  • headcount_growth=include: +1 credit
Example:

Credit Calculation Examples

Error Responses

Rate Limit Exceeded

Insufficient Credits

Best Practices

Monitor Your Usage: Track credit consumption in your Tuesday dashboard to avoid unexpected exhaustion of your credit balance.
Batch Processing: Plan bulk operations carefully, considering both rate limits and credit costs. Process requests in batches rather than rapid succession.
Selective Enrichment: Only request enrichment data (email, phone, company details) when you actually need it to minimize credit consumption.
Cache Results: Store API responses locally to avoid repeat requests for the same data.

Handling Rate Limits

When you hit rate limits, implement exponential backoff in your applications:

Upgrading Your Plan

If you need higher rate limits or more credits:
  1. Visit your dashboard at app.tuesday.so
  2. Review usage patterns to determine optimal plan
  3. Upgrade your plan for increased limits and credits
  4. Contact support for enterprise-level requirements