Prerequisites: You need an API Key. You can grab one from your BlitzAPI Dashboard.
1
Choose your client
BlitzAPI is a standard REST API, so you can use it with any language.We recommend using cURL to test quickly in your terminal, or Node.js/Python for building integration scripts.
2
Prepare the request
We will use the
/api/enrichment/email endpoint.Replace YOUR_API_KEY with your actual key.3
Check the response
You should receive a JSON object containing the verified email and its status.
Cost: This successful request costs 1 credit. If the email is not found (
found: false), the cost is 0 credits.What just happened?
- Authentication: You passed your key via the
x-api-keyheader. - Live Signal: BlitzAPI queried the network in real-time.
- Verification: We validated the email deliverability before returning it.

