Quick Start

Get up and running with Email Toolkit API in under a minute.

Quick Start

Get started with the Email Toolkit API in minutes.

1. Get Your API Key

Sign up and subscribe at RapidAPI to get your API key.

2. Make Your First Request

curl

curl -X GET "https://email.toolkitapi.io/v1/email/[email protected]" \
  -H "X-API-Key: YOUR_KEY"

Python

import httpx

response = httpx.get(
    "https://email.toolkitapi.io/v1/email/validate",
    params={"email": "[email protected]"},
    headers={"X-API-Key": "YOUR_KEY"},
)
print(response.json())

JavaScript

const response = await fetch(
  "https://email.toolkitapi.io/v1/email/[email protected]",
  { headers: { "X-API-Key": "YOUR_KEY" } }
);
const data = await response.json();
console.log(data);

3. Explore the Response

{
  "email": "[email protected]",
  "valid": true,
  "format_valid": true,
  "mx_found": true,
  "disposable": false,
  "risk_score": 0.1
}

4. Next Steps