Rate Limits

The OneTwentyOne API is in beta. As such, we are currently only offering a free plan with a generous rate limit: 10,000 requests across all routes per day. If you need more requests right now, please reach out to us at hello@121health.app or join our Discord

Rate Limit Headers

With every request that is rate limited (currently, quantity and sleep routes), you will receive the following in each response:

Response

{
    // ... pagination data if applicable
    "limit": {
        "X-RateLimit-Limit": 10000,
        "X-RateLimit-Remaining": 9991,
        "X-RateLimit-Reset": 1715126400
    },
    // ... data
},
  • X-RateLimit-Limit: The maximum number of requests you can make in a day.
  • X-RateLimit-Remaining: The number of requests you have left for the day.
  • X-RateLimit-Reset: The time at which the rate limit will reset in Unix time.

Was this page helpful?