跳转到内容

Instagram邮箱检查器API:实时邮箱验证

实时检测邮箱地址是否在Instagram上注册,即时返回检测结果。

代码示例:

curl -X POST 'https://api.ekycpro.ai/v1/check' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"service_type": "instagram_email", "identifier": "user@example.com"}'

成功响应:

{
"success": true,
"data": {
"id": "chk_a1b2c3d4e5f6",
"identifier": "user@example.com",
"registered": true,
"billed": true
}
}

错误响应:

{
"success": false,
"error": "check failed: worker instagram_email: server too busy"
}

HTTP 请求

POST https://api.ekycpro.ai/v1/check

请求头

请求头说明
X-API-Key您的API Key(必填)
Content-Typeapplication/json

请求体

字段类型必填说明
service_typestringinstagram_email
identifierstring邮箱地址(如 user@example.com

响应字段

字段类型说明
successbool请求是否成功
data.identifierstring被检测的标识符
data.registeredbool账号是否已注册
data.idstring唯一检测请求ID
data.billedbool | 本次请求是否已计费

状态码

状态码说明
200检测完成
400请求无效
401未授权
500服务器错误