Network failures can leave you unsure whether a request succeeded. ProxyJam supports idempotency on create operations so you can retry safely.Documentation Index
Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt
Use this file to discover all available pages before exploring further.
How it works
Include a uniqueidempotency_key (UUID) in your request body. If you send the same key again, the API returns the original response instead of creating a new resource.
Endpoints that support idempotency keys
| Endpoint | Field |
|---|---|
POST /orders | idempotency_key in request body |
POST /orders/guest | idempotency_key in request body |
Payment intents
ForPOST /payments/payment-intents, pass the idempotency key as an HTTP header:
Best practices
- Generate a new UUID for each unique operation. Never reuse a key for a different operation.
- Store the key before making the request so you can resend it on retry.
- Keys are scoped per user — the same key used by two different users creates two separate resources.