Skip to content
TasksMate Developers

0.x — pre-release, no compatibility promise yet.What this means

What this is: how much a token may call. When you need it: a batch job, a sync, a dashboard that polls.

Terminal window
curl -si "$TASKSMATE_API_URL/v1/me" -H "Authorization: Bearer $TASKSMATE_TOKEN" | grep -i '^x-ratelimit'
Your requests600 a minuteper tokenAnsweredX-RateLimit-Remaining429Retry-Aftereach takes oneany leftempty↻ refills every minute
Each token gets an allowance that refills every minute
Token Requests per minute
tm_live_… 600
tm_test_… 60

The window is one fixed minute per token; every token request counts, refused ones included.

Every token-authenticated response carries X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset (Unix seconds when the window ends).

429, type …:rate-limit: Too many requests with this access token; wait Retry-After seconds (X-RateLimit-* say where you stand). Back off until Retry-After, then resume. Spread work across the minute rather than bursting at its start.