Submit the request
Create a durable job with the outbound request and an explicit retry policy in one x402-paid call.
POST retry.exende.dev/v1/retriesRetry API · Agent infrastructure
Make an outbound HTTPS request durable. Schedule backoff, recover interrupted work, and inspect every attempt through one API.
x402 v2 · USDC on Base · Discoverable in Bazaar
POST retry.exende.dev/v1/retriesExponential backoff · Up to 8 attemptsGET /v1/retries/{id}/attemptsA focused HTTP workflow
Create a durable job with the outbound request and an explicit retry policy in one x402-paid call.
POST retry.exende.dev/v1/retriesRetry schedules transient failures and recovers interrupted work within the job lifetime.
Exponential backoff · Up to 8 attemptsUse a private read token for status and attempt history, or configure an optional signed terminal callback.
GET /v1/retries/{id}/attemptsThe request contract
The creation payment covers the job and its permitted outbound attempts. The response includes a private read token for follow-up status and history requests.
Optional terminal callbacks are signed with HMAC and retried independently. The retry policy and target restrictions are documented in the API contract.
Explore the full API referencebash
Initial request returns HTTP 402 payment requirements
curl -i -X POST \
https://retry.exende.dev/v1/retries \
-H "Content-Type: application/json" \
--data '{
"request": {
"method": "GET",
"url": "https://httpbin.org/status/204"
},
"retry": {
"max_attempts": 8,
"strategy": "exponential",
"initial_delay_seconds": 5,
"max_delay_seconds": 300
}
}'Built for agent workflows
An x402-aware client reads the HTTP 402 payment requirements, settles the exact USDC amount, and retries with its payment signature.
Payment model
Jobs Data subscriptions and credits are a separate access model. Infrastructure creation uses its own documented contract and payment requirements.
View Bazaar discovery