Pitstop / 429 Classifier

Your retry logic is probably
burning budget.

Paste one 429 response. Get the right next action:
wait, shrink, or stop.

3 production fixes shipped within 24h of diagnosis. For engineers shipping agents, SDKs, proxies, or retry loops that misbehave under load.


bash
curl -s -X POST https://web-production-273d3.up.railway.app/classify \
  -H "Content-Type: application/json" \
  -d '{"status":429,"headers":{"retry-after":"30"},"provider":"anthropic"}'
{
  "classification": "WAIT",
  "action":         "Honor Retry-After header. Retry after 30s.",
  "knob":           "retry_after_floor_ms"
}

retry-after: 30
WAIT Delay, then retry.
no retry-after
CAP Reduce concurrency first.
retry-after: 600+
STOP Do not retry. Surface to caller.

Treating all 429s as "retry" is how systems amplify failure instead of absorbing it.


Built from real production failures, not toy examples.   github.com/SirBrenton/pitstop-truth →


  1. Paste status + headers from your 429 response
  2. Get WAIT / CAP / STOP back in seconds
  3. Adjust the first knob instead of guessing

Have a weird 429?

Send one redacted failure block or retry config — stack, error, headers, whatever you have.
I'll tell you what to cap first. No call needed.


async · no call · turnaround same day