Making API calls
This guide walks you through making your first request to the Enrichley email validation API. Whether you are new to APIs or an experienced developer, the steps below will help you integrate Enrichley quickly.Quick start
1. Obtain your API key
- Log in to the Enrichley app.
- Sign up for a paid plan if you haven’t already.
- Go to your account profile section and locate your API key.
- Copy the key and store it securely.
2. Make your first API call
Use any HTTP client (curl, Postman, your backend language, etc.) to call the single email validation endpoint:- URL:
https://api.enrichley.io/api/v1/validate-single-email - Method:
POST - Auth header:
X-Api-Key: YOUR_API_KEY
3. Check the response
A successful request returns a JSON object describing the status of the email address (for example, whether it’s valid and whether the domain is catch-all). The exact fields depend on your integration, but typically you’ll see:- Whether it’s valid (
trueorfalse). - The status of the email (
ok,catch_all_validated,catch_all,unknown,or invalid ) - Statuses
okandcatch_all_validatedare the only valid emails, the rest should not be emailed.
💡 Keep your key secret: Treat your API key like a password. Never commit it to public repositories, client-side code, or share it in screenshots or support tickets.

