An Agent Skill for verifying email addresses using the BillionVerify API.
This skill enables AI agents to verify email addresses — single verification, batch verification, bulk file processing, credit management, and webhook configuration — through the BillionVerify API.
Install this skill using the skills CLI:
npx skills add BillionVerify/billionverify-skillOr install to specific agents:
npx skills add BillionVerify/billionverify-skill -a cursor -a claude-codeBefore using this skill, you need to:
- Get your BillionVerify API key from https://billionverify.com/auth/sign-in?next=/home/api-keys
- Set it as an environment variable:
export BILLIONVERIFY_API_KEY=your_api_key_hereOnce installed, your AI agent can use this skill to:
Verify the email address user@example.com
Verify these emails: alice@gmail.com, bob@company.com, test@tempmail.org
Upload emails.csv and verify all the email addresses in it
How many verification credits do I have left?
Download only the valid and risky emails from job task_abc123
Create a webhook to notify https://myapp.com/hook when file verification completes
List all my webhooks
- Verify single email addresses in real-time
- Batch verify up to 50 emails per request
- Upload CSV/Excel/TXT files for bulk verification (up to 100,000 emails)
- Track async file verification job status with long-polling
- Download filtered results by verification status
- Check credit balance and usage
- Create, list, and delete webhooks for file completion events
- Health check endpoint
| Status | Description | Credits |
|---|---|---|
valid |
Email is valid and deliverable | 1 |
invalid |
Email is invalid or does not exist | 0 |
unknown |
Verification result is uncertain | 0 |
risky |
Email may be risky to send to | 1 |
disposable |
From a disposable email service | 1 |
catchall |
Domain accepts all emails | 1 |
role |
Role-based address (info@, support@) | 1 |
For detailed API documentation, visit https://billionverify.com/docs
- BillionVerify API key (get one at https://billionverify.com/auth/sign-in?next=/home/api-keys)
- Environment variable
BILLIONVERIFY_API_KEYmust be set
- BillionVerify Website
- BillionVerify API Documentation
- BillionVerify Node SDK
- BillionVerify MCP Server
- Skills.sh Directory
MIT