接入文件
電子郵件有效性檢測
檢測郵件語法、MX、SMTP 可達性、拋棄式郵箱、角色郵箱與可信度。
Endpoint
POST /v1/email-verification
Authentication
Use a ToolKK OpenAPI AppKey. APILayer credentials stay on the ToolKK provider gateway.
Billing
A successful call costs 10 coins.
Errors
Invalid input, quota exhaustion, authentication faults, and temporary provider failures return normalized error codes and messages.
接入示例程式碼
提供 Shell、Python、Go、Java、PHP 等常見接入示例,便於直接接到現有專案裡。
請求示例
{
"email": "hello@example.com"
}響應示例
{
"code": "SUCCESS",
"message": "success",
"data": {
"email": "hello@example.com",
"syntax_valid": true,
"is_deliverable": true,
"is_disposable": false,
"is_role_account": false,
"mx_records": true,
"score": 0.85
}
}請求欄位
以下欄位根據示例 JSON 自動提取,僅作接入參考。
| 欄位路徑 | 型別 | 示例值 |
|---|---|---|
| string | hello@example.com |
響應欄位
以下欄位根據示例 JSON 自動提取,僅作接入參考。
| 欄位路徑 | 型別 | 示例值 |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.email | string | hello@example.com |
| data.syntax_valid | boolean | true |
| data.is_deliverable | boolean | true |
| data.is_disposable | boolean | false |
| data.is_role_account |