三六零智脑连接器
连接器

三六零智脑连接器

连接器

需两次购买:①订购原厂商接口 ②订购易源会员包代理转发;“360智脑”为360自研千亿参数大语言模型,在此前多项测评中已具备认知智能通用大模型能力。

会员资源包统一计费,无需单独购买,开通会员包后可直接调用。
图像
接入点说明
根据输入的 prompt 生成图像
接口地址
https://connector.showapi.com/3100-6?appKey={your_appKey}查看密钥调用帮助
返回格式JSON
请求方式POST/GET
请求参数
Header 参数
参数名称类型示例值必须描述
ds_idString
-
Content-TypeString
application/json
请求 Body 体
body
{
  "model":"360CV_S0_V5",
  "style":"realistic",
  "prompt": "画一个有蓝天白云草地溪流和雪山的图片",
  "negative_prompt": "",
  "guidance_scale": 7.5,
  "height": 512,
  "width": 512,
  "num_inference_steps": 25,
  "samples": 1,
  "seed": 49022,
  "enhance_prompt":false
}
返回参数
该接口为透传模式,直接返回服务商原始数据,无 showapi_res_body 封装
返回体
cURL
curl -X POST "https://connector.showapi.com/3100-6?appKey=YOUR_APPKEY" \
  -H "ds_id: " \
  -H "Content-Type: application/json" \
  -H "Content-Type: application/json" \
  -d '{
  "model":"360CV_S0_V5",
  "style":"realistic",
  "prompt": "画一个有蓝天白云草地溪流和雪山的图片",
  "negative_prompt": "",
  "guidance_scale": 7.5,
  "height": 512,
  "width": 512,
  "num_inference_steps": 25,
  "samples": 1,
  "seed": 49022,
  "enhance_prompt":false
}'
返回示例
JSON
{
  "status": "success",
  "generationTime": 7,
  "output": ["https://beijing.xstore.qihu.com/zhinao-common/b773314b-07dc-44bc-8b85-a02295437ad8.png"],
  "meta": {
    "H": 512,
    "W": 512,
    "guidance_scale": 7.5,
    "n_samples": 1,
    "negative_prompt": "",
    "prompt": "画一个蓝天白云的图片",
    "seed": 49022,
    "steps": 25
  }
}
MCP 服务集成接口级

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

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

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