IGPAPI
  1. 邮箱创建账号
IGPAPI
  • 使用说明
  • 账号管理
    • 邮箱创建账号
      • 邮箱验证是否合法
        POST
      • 发送注册邮件验证码
        POST
      • 验证邮箱验证码
        POST
      • 邮箱注册
        POST
    • 短信创建账号
      • 手机号验证是否合法
      • 发送注册短信验证码
      • 验证短信验证码
      • 短信注册
  • 认证管理
    • 登录
      POST
    • 多因素登录
      POST
    • 打开监听
      POST
    • 关闭监听
      POST
    • 查看挑战类型
      POST
    • 解决挑战(待定)
      POST
  • 个人动态
    • 获取粉丝
      GET
    • 我关注的
      GET
    • 未读消息
      GET
    • 用户动态
      GET
    • 聊天框的消息
      GET
  • 媒体
    • 评论
      POST
    • 点赞
      POST
    • 取消点赞
      POST
  • 交流
    • 发送私信
      POST
    • 发送图片
      POST
  • 好友关系
    • 关注
      POST
    • 取消关注
      POST
  • 用户信息
    • 修改昵称
    • 修改用户名
    • 修改头像
    • 根据userId获取用户信息
    • 根据username获取用户信息
    • 获取用户故事
  1. 邮箱创建账号

邮箱验证是否合法

开发中
POST
/accounts/check-email

请求参数

Header 参数
igp-proxy-url
string 
代理地址
可选
默认值:
socks5://user-niude666-region-us-sessid-b6ff4f30488e-sesstime-30-true:aa334455@pr-na.roxlabs.cn:4600
device-id
string 
设备id
可选
默认值:
xxdd21
Body 参数application/json
email
string 
必需
waterfallId
string 
必需
示例
{
    "email": "vintom.xu@outlook.com",
    "waterfallId": "6a5d2071-5d39-45e4-b288-f8ad2d7a6af6"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://103.244.148.79/api/accounts/check-email' \
--header 'igp-proxy-url: socks5://user-niude666-region-us-sessid-b6ff4f30488e-sesstime-30-true:aa334455@pr-na.roxlabs.cn:4600' \
--header 'device-id: xxdd21' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "vintom.xu@outlook.com",
    "waterfallId": "6a5d2071-5d39-45e4-b288-f8ad2d7a6af6"
}'

返回响应

🟢200成功
application/json
Body
valid
boolean 
必需
available
boolean 
必需
allow_shared_email_registration
boolean 
必需
username_suggestions_with_metadata
object 
必需
suggestions
array [object {2}] 
必需
tos_version
string 
必需
age_required
boolean 
必需
status
string 
必需
示例
{
    "valid": true,
    "available": true,
    "allow_shared_email_registration": false,
    "username_suggestions_with_metadata": {
        "suggestions": [
            {
                "username": "vintom.xu",
                "prototype": "email"
            },
            {
                "username": "vintom.xu2023",
                "prototype": "emailyear"
            },
            {
                "username": "vintom.xu4",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu26",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu980",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu4743",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu1",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu12",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu344",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu6893",
                "prototype": "emailnumber"
            },
            {
                "username": "vintom.xu5",
                "prototype": "emailnumber"
            }
        ]
    },
    "tos_version": "row",
    "age_required": true,
    "status": "ok"
}
修改于 2023-07-30 13:08:51
上一页
使用说明
下一页
发送注册邮件验证码
Built with