curl -X GET "https://api.bouncedetector.com/api/v1/batches?limit=10&skip=0" \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"_id": "507f1f77bcf86cd799439011",
"status": "completed",
"totalCount": 10,
"processedCount": 10,
"createdAt": "2025-03-09T14:30:00.000Z"
},
{
"_id": "507f1f77bcf86cd799439012",
"status": "processing",
"totalCount": 100,
"processedCount": 45,
"createdAt": "2025-03-09T14:25:00.000Z"
}
]
Batch
List Batches
List your team batch jobs.
GET
/
api
/
v1
/
batches
curl -X GET "https://api.bouncedetector.com/api/v1/batches?limit=10&skip=0" \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"_id": "507f1f77bcf86cd799439011",
"status": "completed",
"totalCount": 10,
"processedCount": 10,
"createdAt": "2025-03-09T14:30:00.000Z"
},
{
"_id": "507f1f77bcf86cd799439012",
"status": "processing",
"totalCount": 100,
"processedCount": 45,
"createdAt": "2025-03-09T14:25:00.000Z"
}
]
List your team’s batch jobs. Pagination via
limit and skip query parameters.
Request
number
default:"50"
Max number of results
number
default:"0"
Number of results to skip (offset)
Response
Returns an array of batch objects with_id, status, totalCount, processedCount, createdAt.
curl -X GET "https://api.bouncedetector.com/api/v1/batches?limit=10&skip=0" \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"_id": "507f1f77bcf86cd799439011",
"status": "completed",
"totalCount": 10,
"processedCount": 10,
"createdAt": "2025-03-09T14:30:00.000Z"
},
{
"_id": "507f1f77bcf86cd799439012",
"status": "processing",
"totalCount": 100,
"processedCount": 45,
"createdAt": "2025-03-09T14:25:00.000Z"
}
]
Authorizations
Your API key (e.g. bdt_abc123...). Obtain from the dashboard.
Last modified on March 9, 2026
