ActionNeverBounceUpdated September 2026

How do I get NeverBounce bulk verification results?

Short answer: You can get neverbounce job results in NeverBounce by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the NeverBounce Get NeverBounce Job Results action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Get NeverBounce Job Results in NeverBounce — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Job ID
job_id
stringRequiredThe bulk verification job ID
Page
page
stringOptionalPage number for pagination
Items Per Page
items_per_page
stringOptionalNumber of items per page
Sample request
{
"job_id": "e.g. 280000",
"page": "1",
"items_per_page": "10"
}
Returns
{
"query": {
"page": 1,
"job_id": 280000,
"items_per_page": 10
},
"status": "success",
"results": [
{
"data": {
"name": "John Doe",
"email": "john@example.com"
},
"verification": {
"flags": [
"has_dns",
"has_dns_mx"
],
"result": "valid",
"suggested_correction": ""
}
}
],
"total_pages": 100,
"total_results": 1000
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Get NeverBounce Job Results.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Get NeverBounce Job Results.

What does the Get NeverBounce Job Results action do in NeverBounce?
Returns paginated results from a completed bulk-verification job. For "10k-email list cleaning" workflows after the bulk job finishes processing.
What inputs does Get NeverBounce Job Results require?
Required: Job ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if NeverBounce returns an error?
The run history shows the failed step with its input and the error message NeverBounce returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Get NeverBounce Job Results support batch operations?
Run Get NeverBounce Job Results inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within NeverBounce's rate limits.
More actions

Other NeverBounce actions.

Get NeverBounce Job Results in NeverBounce — start free