服务列表API:查看支持的检测类型
列出所有支持的服务类型及其当前可用状态。
代码示例:
curl --location 'https://api.ekycpro.ai/v1/services'响应示例
{ "success": true, "services": [ {"type": "facebook", "data_type": "phone", "enabled": true}, {"type": "instagram", "data_type": "phone", "enabled": true}, {"type": "netflix", "data_type": "email", "enabled": true} ]}HTTP 请求
GET https://api.ekycpro.ai/v1/services
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
success | bool | 请求是否成功 |
services[].type | string | 服务类型标识符 |
services[].data_type | string | phone 或 email |
services[].enabled | bool | 是否支持实时检测 |
状态码
| 状态码 | 说明 |
|---|---|
200 | 请求成功 |