What you will build
Create a Make.com scenario using the Bolt Route - Email Verification app to verify single emails or submit bulk tasks, then branch on the results.Step 1: Create your Bolt Route API key
- Create an account or log in to Bolt Route.
- Open app.boltroute.ai/api.
- Click New key.
- In the Generate API key dialog, select Custom if it is available. If not, pick any option such as Zapier. Keys are universal, so the selection only tags usage.
- Enter a key name, then click Create key.
- Copy the key now. It is shown only once.
Step 2: Connect Bolt Route in Make.com
- In Make.com, create a new scenario or open an existing one.
- Add a module and search for Bolt Route - Email Verification.
- Click Add to create a new connection.
- Paste your API key and leave the Base URL as
https://api.boltroute.aiunless you use a custom endpoint. - Save the connection.
Step 3: Realtime verification
- Add the Verify Email module.
- Map Email from your trigger.
- Run the module once to validate the connection.
- Use fields like
status,is_disposable, andis_role_basedto filter or branch your scenario.
Step 4: Bulk verification with a list
- Build a list of emails using an Array Aggregator or a previous module.
- Add Create Verification Task.
- Map Emails to the array of email strings.
- Optionally set Webhook URL if you want a callback when the task finishes.
- The response includes a task
id. - Add Get Task to check progress, Get Task Jobs to inspect per-email results, or Download Task Results to fetch a CSV/XLSX file.
Step 5: Batch uploads with a file
- Add Upload Email File and map a file from your previous step.
- Supported formats:
.txt,.csv,.xlsx. - For
.csvor.xlsx, set Email column to a header name or 1-based index. - The response includes
upload_idandtask_id. - Use Get Batch Upload Status to check progress, then Download Task Results to retrieve the output file.
Limits: Create Verification Task supports up to 10,000 emails.
.txt uploads do not support email_column.Additional modules you may use
- Get Credit Balance and List Credit Transactions for credit tracking.
- Get Verification Metrics for usage analytics.
- API Keys modules to create, list, inspect usage, or revoke keys.
Replace
https://api.boltroute.ai with your Bolt Route API base URL if different.