429

Too many requests, briefly.

You are over the limit for this token. Nothing is blocked or penalised — it resumes on its own.

918918/ 600
requests this minute
resets at the top of the next minute
when it clears

600 requests per minute per token, on the read API.

How to stop seeing this

  • Read the Retry-After header

    Every 429 we send carries it. Backing off on that value alone resolves almost every case we see.

  • Ask for a page, not a loop

    GET /v1/boards is paginated. Fetching each board by id in a loop costs a hundred requests where one would do.

  • Subscribe instead of polling

    The board.cut webhook fires on every cut. Polling for changes is the commonest cause of hitting this at all.

Rate limits, in full