Skip to documentation
On this page
GearDex DocsPlatform API

Rate limits

Smooth out bursts, respect the retry signal, and keep background jobs from competing for the same key.

Studio APIv1Updated August 2026
Wind turbines across the Coachella Valley at twilight
GearDex LogoGearDex
Window resets in 18s

Traffic policy

One-minute request window

90

of 120 used

Current window

75%

Limit

120 / min

Key

Production sync

On 429

Retry-After: 18

Wait, add jitter, then send the request again.

Limit model

The current default is 120 requests per minute for each API key. GearDex counts requests in a fixed 60-second window. Two services using the same key also share the same window.

GearDex Studio API rate limit model
NameTypeDescription
Keygdx_live_*The request count is isolated by Studio API key.
Window60 secondsA fixed window begins when the counter is created.
Default limit120The current default maximum requests in one window.
ConfigurationServer settingAn environment may use a different per-minute value.

Throttled response

When a key reaches its current window, GearDex responds with429 Too Many Requests. The Retry-After header gives the minimum whole number of seconds to wait.

429 response

HTTP/1.1 429 Too Many Requests
Content-Type: application/json
Retry-After: 18

{
  "error": "Rate limit exceeded.",
  "code": "rate_limited"
}

Backoff

Honor Retry-After first. Add jitter so several workers do not wake at the same instant, then cap the number of attempts. Keep the original request context in logs so a delayed failure can be traced.

Wait before retrying (JavaScript)

const retryAfter = Number(response.headers.get("retry-after") ?? 1)
const jitter = Math.floor(Math.random() * 500)

await new Promise((resolve) =>
  setTimeout(resolve, retryAfter * 1000 + jitter),
)

// Retry only when the operation is safe to send again.

Traffic design

  • Use separate keys for separate services so one burst does not stall every integration.
  • Fetch list endpoints in pages of up to 100 instead of one record at a time.
  • Cache stable profile and document metadata where it is safe to do so.
  • Use webhooks for change notifications instead of frequent polling.
  • Queue background work and set a concurrency limit per key.

Service availability

GearDex returns 503 rate_limit_unavailable when it cannot safely read or update the counter. This differs from a 429: the key did not necessarily exhaust its window, and the service cannot confirm its current count.