Validieren und verifizieren Sie E-Mail-Adressen mit modernster Technologie. Verbessern Sie Ihre Datenqualität und reduzieren Sie Bounce-Raten drastisch.
Diese API erfordert einen gültigen API-Token. Tokens können in Ihrem Profil unter Profil → API-Token erzeugt und verwaltet werden.
🔑 Token-Übermittlungsmöglichkeiten:
Authorization: Bearer YOUR_API_TOKEN
?token=YOUR_API_TOKEN (Query-Parameter)
X-API-Token: YOUR_API_TOKEN (Header)
token=YOUR_API_TOKEN (POST/PUT Body)
Basis-URL: https://leads.creativeskyline.com/api/emailverification
/api/emailverification/{email}/{key}
Verifiziert eine E-Mail-Adresse umfassend auf Gültigkeit, Erreichbarkeit und Qualität.
{email} - E-Mail-Adresse zur Verifikation
{key} - API-Schlüssel (beim Support erhältlich)
Hinweis: Ersetzen Sie "IHR_API_KEY" mit Ihrem persönlichen API-Schlüssel vom Support.
curl "https://leads.creativeskyline.com/api/emailverification/user@example.com/dummy" \ -H "Authorization: Bearer YOUR_API_TOKEN"
Sicherheitshinweis: Verwenden Sie API-Schlüssel niemals in Frontend-Code. Implementieren Sie einen Backend-Proxy für Produktionsumgebungen.
// Beispiel für Backend-Implementation
const apiKey = 'IHR_API_KEY'; // Vom Support erhalten
fetch('https://leads.creativeskyline.com/api/emailverification/user@example.com' + apiKey)
.then(response => response.json())
.then(data => {
if (data.valid) {
console.log('E-Mail ist gültig:', data.email);
} else {
console.log('E-Mail ungültig:', data.reason);
}
});
{
"valid": true,
"email": "user@example.com",
"domain": "example.com",
"local": "user",
"syntax_valid": true,
"domain_exists": true,
"mx_records": true,
"smtp_valid": true,
"disposable": false,
"role_account": false,
"quality_score": 95,
"verification_type": "full",
"response_time": "1.2s"
}