service_type email_avatar

邮箱头像画像

查一个邮箱账号有没有公开头像,并读出它的画像属性。覆盖 Gmail、Yandex、Mail.ru。

使用成本: $0.004 / 次响应方式: 同步实时POST /api/v1/check
邮箱头像画像
公开演示

无需登录;公开演示有每日次数限制。

接口约定

一次请求,立即返回

提交一个邮箱地址,并用 service_type 选择本产品;认证使用你的 API Key。

复制下面的 curl 命令,只需将示例 API Key 替换为你自己的 Key。

cURL 请求POST /api/v1/check
curl -X POST "https://avatarlookup.com/api/v1/check" \
  -H "X-API-Key: sk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "service_type": "email_avatar", "identifier": "alex.kim@gmail.com" }'
响应200 OK
{
  "code": 0,
  "msg": "ok",
  "data": {
    "service_type": "email_avatar",
    "identifier": "alex.kim@gmail.com",
    "registered": true,
    "avatar": true,
    "avatar_url": "https://lh3.googleusercontent.com/a/example",
    "provider": "gmail",
    "extra": {
      "profile_available": "true",
      "category": "individual portrait",
      "gender": "male",
      "age": "39",
      "skin_color": "white",
      "hair_color": "brown"
    }
  }
}

正确使用结果

让一次单号检测真正有用的三个细节

  1. 提交一个完整的标识

    WhatsApp 用 E.164 格式的手机号(加号、国家码、号码),邮箱产品用完整的邮箱地址。

  2. 读三个字段,不是一个

    registered 说明账号是否存在,avatar 说明是否公开了头像,avatar_url 给出图片地址。每一次成功查询三个都会返回。

  3. 图片自行抓取

    avatar_url 指向平台自己的 CDN,可能按他们的规则失效。请把它当作指针:需要留存就自行下载或缓存。

检测内容

邮箱头像画像 会返回什么?

返回字段

  • registered · boolean该服务商下是否存在这个账号。
  • avatar · boolean是否设置了公开头像。
  • avatar_url · string公开头像的图片地址;未设置头像时为空字符串。
  • provider · string按域名判断出的邮箱服务商:gmail、yandex 或 mailru。
  • extra.profile_available · booleanWhether portrait attributes were produced this time. Read it together with avatar: false/false means there is no avatar to analyse, true/false means the avatar could not be recognized.
  • extra.category · stringWhat the picture is: individual portrait, group photo, game avatar, cartoon avatar, landscape, pet avatar or object.
  • extra.gender · stringmale, female or unknown.
  • extra.age · numberEstimated age, accurate to about 3 years and clamped to 0-80. Empty when no gender was determined — there is no placeholder number.
  • extra.skin_color · stringDescriptive skin tone, for example white, east_asian or hispanic. Treat it as an open set.
  • extra.hair_color · stringDescriptive hair colour, for example black, brown, blond or gray white. Treat it as an open set.

适用场景

在以下场景使用本产品

  • 联系人卡片补全
  • CRM 头像回填
  • 邮件名单梳理
  • 账号数据清理

直接答案

邮箱头像 是什么?

邮箱头像画像 返回 该账号是否有公开头像,有则一并给出图片地址。使用 service_type email_avatar(选择产品的参数)提交一个邮箱地址,例如 alex.kim@gmail.com,并在同一次 API 响应里读取 extra 对象。

能力边界

不会返回哪些内容

  • 结果反映平台此刻公开了什么。头像随时可以新增、更换或删除 —— 业务决策需要最新状态时请重新查询。
  • 它不是可达性检测,也不是活跃度检测:有头像并不说明这个账号在用、在线,或者能接收任何内容。
  • 检测不会向被查账号发送任何内容;结果也不构成身份认证、归属证明或联系许可。

产品常见问题

关于邮箱头像的常见问题

邮箱头像画像 检测什么?

它对一个标识进行检测,并在同一次同步响应中返回该账号是否有公开头像,有则一并给出图片地址。

邮箱头像如何计费?

仅在检测完成后扣除余额;检测失败或无法判定的请求不会保留扣费。

需要什么手机号格式?

按产品接受的形态提交:WhatsApp 用 E.164 格式的手机号,邮箱产品用完整的邮箱地址。发错形态会在扣费前被拒。

头像结果能说明这个号码可以打通吗?

不是。结果只说明平台此刻是否公开了头像;它不说明账号是否在用、是否在线,也不代表可以联系对方。联系前的同意与适用规则仍需由你自行遵守。

相关产品

按需选择检测产品

立即开始检测

创建账号后,可通过 SaaS 网页后台或 API 使用全部检测产品:同步实时检测与异步批量检测共用同一份余额。