> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yousonder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Rate limits

> 60 requests a minute per key.

Each API key can make **60 requests per minute**. A normal integration polls a few times per author every few hours, so it never gets near that.

Every response tells you where you stand:

| Header                  |                                          |
| ----------------------- | ---------------------------------------- |
| `X-RateLimit-Limit`     | Requests allowed per minute (60).        |
| `X-RateLimit-Remaining` | Requests left in the current minute.     |
| `X-RateLimit-Reset`     | When the minute resets, in Unix seconds. |

Over the limit, you get `429 rate_limited` with a `Retry-After` header saying how many seconds to wait.

<Tip>
  Views refresh once an hour, so there's nothing to gain from polling the same author more often than that.
</Tip>
