- 通用服务模块
- 登录服务模块
- 用户服务模块
- 分析数据服务模块
- 健康测试
- Prompt 服务
- ChatGLM 服务
- Country Guess 服务
- Socre Rank 服务
- 前端调试
邮箱是否存在
GET
/api/user/has-email
请求参数
Query 参数
email
string
电子邮箱
示例值:
wangchaowei1208@163.com
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '127.0.0.1:9000/api/user/has-email?email=wangchaowei1208@163.com'
返回响应
🟢200成功
application/json
Body
code
string
错误码
message
null
错误码信息
data
boolean
成功时返回的数据
success
boolean
请求是否成功
示例
{
"code": "string",
"message": null,
"data": true,
"success": true
}