Rate Limits & Credits

Every request costs credits. Your monthly credit budget depends on your plan. Rate limits are enforced per-minute.

Credit costs per endpoint

EndpointCredits
/v1/horoscope1
/v1/sun-sign1
/v1/moon-phase1
/v1/numerology2
/v1/tarot3
/v1/natal-chart5
/v1/compatibility5
/v1/transits5

Plan limits

PlanCredits/moRequests/minPrice
Free10010$0
Pro10,00060$19/mo
Business50,000120$49/mo
Enterprise200,000300$99/mo

Rate limit headers

Responses include headers to help you stay within limits:

  • X-RateLimit-Limit — requests/min allowed on your plan
  • X-RateLimit-Remaining — requests remaining this minute

Handling 429

If you exceed your rate limit or credit balance, you get a 429 with a JSON error. Back off and retry.

{
  "error": {
    "code": "auth_failed",
    "message": "Rate limit exceeded: 10 requests/minute on the free plan."
  }
}