Validieren und verifizieren Sie E-Mail-Adressen mit modernster Technologie. Verbessern Sie Ihre Datenqualität und reduzieren Sie Bounce-Raten drastisch.
https://creativeskyline.de/api/emailverification/{email}/{key}
Die Email Verifier API prüft E-Mail-Adressen auf mehreren Ebenen:
https://creativeskyline.de/api/emailverification/{email}/{key}
/api/emailverification/{email}/{key}
Verifiziert eine E-Mail-Adresse umfassend auf Gültigkeit, Erreichbarkeit und Qualität.
email
string
*
E-Mail-Adresse zur Verifikation (Pfad-Parameter)
key
string
*
API-Schlüssel (Pfad-Parameter, beim Support erhältlich)
{"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"}
https://creativeskyline.de/api/emailverification/{email}/{key}
/api/emailverification/{email}/{key}
curl -X GET "https://creativeskyline.de/api/emailverification/{email}/{key}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "key": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/emailverification/{email}/{key}', [
'email' => 'value',
'key' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/emailverification/{email}/{key}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
key: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'key': 'value',
}
response = requests.get(
'https://creativeskyline.de/api/emailverification/{email}/{key}',
headers=headers,
json=payload,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/emailverification/{email}/{key}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "key": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/emailverification/{email}/{key}', [
'email' => 'value',
'key' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/emailverification/{email}/{key}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
key: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'key': 'value',
}
response = requests.get(
'https://creativeskyline.de/api/emailverification/{email}/{key}',
headers=headers,
json=payload,
)
data = response.json()