Bulk Operations

Perform batch operations for efficient processing of multiple requests.

Bulk Email Validation

Validate multiple email addresses in a single request.

POST/api/v1/validate/bulk
Loading syntax highlighting...

Response

Loading syntax highlighting...

Batch Offer Processing

Process multiple offer requests simultaneously.

POST/api/v1/offers/bulk-process
Loading syntax highlighting...

Rate Limits

Bulk operations have special rate limiting considerations:

Bulk validation: Maximum 1000 emails per request

Rate limit: 10 bulk requests per minute

Processing time: Large batches may take several seconds

Asynchronous Processing

For very large batches, use asynchronous processing.

POST/api/v1/validate/bulk-async

Returns a job ID to check processing status:

Loading syntax highlighting...

Check job status:

GET/api/v1/jobs/{jobId}