202; replaying the same body with the same Idempotency-Key returns 200 and the same request.id.
partial indicates an incomplete page and finalized indicates that processing is complete.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Submit a batch, poll its status, and retrieve results.
202; replaying the same body with the same Idempotency-Key returns 200 and the same request.id.
curl -sS https://api.bounceless.io/v1/requests -X POST \
-H "X-Api-Key: $BOUNCELESS_API_KEY" \
-H "Idempotency-Key: batch-001" \
-H "Content-Type: application/json" \
-d '{"emails":["first@example.com","second@example.com"]}'
curl -sS "https://api.bounceless.io/v1/requests/$REQUEST_ID" -H "X-Api-Key: $BOUNCELESS_API_KEY"
curl -sS "https://api.bounceless.io/v1/requests/$REQUEST_ID/results?limit=50&offset=0" -H "X-Api-Key: $BOUNCELESS_API_KEY"
partial indicates an incomplete page and finalized indicates that processing is complete.