실시간 이메일 인증을 위한 간편한 REST API 통합. 이메일 수집 시점에서 바로 검증하여 처음부터 깨끗한 데이터베이스를 유지하세요.
const response = await fetch(
'https://api.clearbounce.net/v1/verify',
{
method: 'POST',
headers: {
'X-API-Key': 'your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: 'test@example.com'
})
}
);
// Response
{
"status": "deliverable",
"email": "test@example.com",
"score": 95,
"reason": "accepted_email"
}
개발자를 위해 설계하고, 성능에 최적화했습니다
평균 응답 시간 500ms 이하. 폼 속도 저하 없이 실시간으로 이메일을 검증합니다.
AI 기반 다단계 엔진과 지능형 Catch-all 감지로 업계 최고 수준의 정확도를 제공합니다.
배치 요청당 최대 10,000개의 이메일을 검증합니다. 비동기 Webhook으로 대용량 목록을 효율적으로 처리합니다.
엔터프라이즈급 보안. GDPR 준수. 이메일 데이터를 저장하거나 공유하지 않습니다.
각 이메일에 대한 상태, 사유 코드, 위험 점수 및 메타데이터가 포함된 풍부한 JSON 응답을 제공합니다.
Node.js, Python, PHP, Ruby용 SDK가 포함된 심플한 REST API. 몇 분 만에 통합할 수 있습니다.
단 몇 줄의 코드로 시작하세요
curl -X POST https://api.clearbounce.net/v1/verify \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"email": "test@example.com"}'
import requests
response = requests.post(
'https://api.clearbounce.net/v1/verify',
headers={'X-API-Key': 'your_api_key'},
json={'email': 'test@example.com'}
)
print(response.json())