达摩院-人脸人体
连接器

达摩院-人脸人体

连接器

需两次购买:①订购原厂商接口 ②订购易源会员包代理转发;为开发者和企业提供高性能的在线API服务,应用于人脸AR、人脸识别和认证、大规模人脸检索、照片管理等各种场景。

会员资源包统一计费,无需单独购买,开通会员包后可直接调用。
行人区域进入检测
接入点说明
可以检测图像中的人体。阿里原接口订购地址:https://vision.aliyun.com/facebody


输入限制
图片格式:JPEG、JPG、PNG、BMP。
URL地址中不能包含中文字符。
接口地址
https://connector.showapi.com/2581-20?appKey={your_appKey}查看密钥调用帮助
返回格式JSON
请求方式POST/GET
请求参数
Header 参数
参数名称类型示例值必须描述
content-typeString
application/x-www-form-urlencoded
Post 表单
参数名称类型示例值必须描述
ImageURLString
https://viapi-test.oss-cn-shanghai.aliyuncs.com/test-team/detectperson.jpg
图片URL地址。
ds_idString
-
返回参数
该接口返回经 showapi_res_body 系统封装,业务数据均位于该对象内;系统级字段见
返回体
cURL
curl -X POST "https://connector.showapi.com/2581-20?appKey=YOUR_APPKEY" \
  -H "content-type: application/x-www-form-urlencoded" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "ImageURL=https%3A%2F%2Fviapi-test.oss-cn-shanghai.aliyuncs.com%2Ftest-team%2Fdetectperson.jpg&ds_id="
返回示例
JSON
{
  "showapi_res_error": "",
  "showapi_res_code": 0,
  "showapi_res_id": "5fc489138d57ba422e6c2319",
  "showapi_res_body": {
    "Data": {
      "Elements": [
        {
          "Boxes": [
            175,
            154,
            418,
            551
          ],
          "Type": "person",
          "Score": 0.95028924942017
        },
        {
          "Boxes": [
            329,
            287,
            506,
            547
          ],
          "Type": "person",
          "Score": 0.94357681274414
        },
        {
          "Boxes": [
            509,
            284,
            718,
            557
          ],
          "Type": "person",
          "Score": 0.93926167488098
        },
        {
          "Boxes": [
            510,
            268,
            555,
            452
          ],
          "Type": "person",
          "Score": 0.83425998687744
        },
        {
          "Boxes": [
            660,
            131,
            802,
            492
          ],
          "Type": "person",
          "Score": 0.68658638000488
        }
      ],
      "Height": 599,
      "Width": 899
    },
    "ret_code": 0,
    "remark": "请求成功",
    "RequestId": "24A0F5D4-07A3-4AE4-9A62-BA390DB23DC4"
  }
}
MCP 服务集成接口级

在 Cherry Studio、ChatBox 等支持 MCP 的客户端中配置,将 {your_appKey} 替换为真实 AppKey(AppKey 管理)。该服务覆盖本接口全部接入点。

MCP JSON
{
  "mcpServers": {
    "showapi-mcp-2581": {
      "url": "http://www.showapi.com.cn/mcp/2581/{your_appKey}"
    }
  }
}
OpenAPI 文档接口级

标准 OpenAPI 3.0 文档,覆盖本接口全部接入点,可导入 Apifox / Postman / Swagger UI,或供 AI Agent 直接消费。