Skip to main content
Paymnt Cloud enforces request limits based on your pricing plan.
Your current limit (e.g., requests per second) is shown in Dashboard → Settings → Rate limits. When you need more throughput, upgrade your plan or contact Support.
Source of truth: the Dashboard. Numbers in examples below are illustrative only.

What is limited

  • API request count. Each HTTP request to the Paymnt Cloud API counts toward your plan’s limit.
  • Environment awareness. Limits may differ for Sandbox and Production (check the Dashboard).
  • How to view your limit. Open Dashboard → Settings → Rate limits to see your effective limit for the current environment.

Responses & headers

When you’re near or over the limit, responses may include standard headers (when available):
If you exceed your plan, the API returns HTTP 429 Too Many Requests:
Always respect Retry-After if present.

Client guidance

  • Throttle on your side. Keep your average request rate ≤ your plan limit
  • Back off on 429. Pause for Retry-After seconds (or a short delay) and retry
  • Use idempotency on writes. Prevent duplicates when retrying POST/PUT/PATCH. See Idempotency
  • Reduce chatter. Cache frequent reads, paginate, and avoid tight polling loops. Prefer events where possible. See Webhooks — Overview
  • Monitor. Log request_id and, when present, rate headers; alert before you hit the limit

Minimal retry example (Node)


Need higher limits?

  • Upgrade your plan in the Dashboard, or
  • Contact Support with your expected requests per second, burst patterns, and endpoints you plan to scale