1. 对话(openai, gemini, claude, deepseek...)
xaix
  • (必读)使用说明
  • 列出模型
    • Models(列出模型)
      GET
  • OpenAI 格式(支持各大原厂模型)
    • 对话(openai, gemini, claude, deepseek...)
      • 聊天(chat)
        POST
      • 聊天(responses)
        POST
      • 流式返回(chat)
        POST
      • 流式返回(responses)
        POST
      • 思考模式(chat)
        POST
      • 思考模式(responses)
        POST
      • MCP调用(chat)
        POST
      • web search(chat)
        POST
      • web search(responses)
        POST
      • 工具调用(chat)
        POST
      • 结构化输出(chat)
        POST
    • 图像(gpt, dalle, banana, jimeng)
      • 参考图片(chat)
      • 参考图片(images)
      • 分析图片(chat)
      • 生成图片(chat)
      • 生成图片(images)
    • 视频(sora, veo, 可灵)
      • 查询视频状态 (sora, veo)
      • 获取视频内容 (sora, veo)
      • 首尾帧视频-同步 (veo)
      • 首尾帧生视频-异步 (可灵)
      • 图生视频-同步 (veo)
      • 图生视频-异步 (sora, veo)
      • 图生视频-异步 (可灵)
      • 文生视频-同步 (veo)
      • 文生视频-异步 (sora, veo)
      • 文生视频-异步 (可灵)
    • 向量化
      • 文本向量化
    • 语音
      • 语音合成(audio)
      • 语音回复(chat)
      • 语音识别(audio)
  • Anthropic 格式
    • Anthropic SDK使用指南
    • 聊天
      POST
    • 聊天(prompt cache)
      POST
    • 流式返回
      POST
    • 聊天(深度思考)
      POST
    • 工具调用(function call)
      POST
    • 分析图片
      POST
  • Gemini 格式
    • 聊天
      POST
    • 生成图片(nano banana)
      POST
    • 分析图片
      POST
    • 编辑图片(nano banana)
      POST
  • Midjourney 格式
    • 上传(upload)
    • 按钮点击(Action)
    • 换脸(FaceSwap)
    • 获取种子(Seed)
    • 任务查询接口
    • 任务批量查询接口
    • 图片融合(Blend)
    • 图生文(Describe)
    • 文生图(Imagine)
  1. 对话(openai, gemini, claude, deepseek...)

web search(responses)

POST
/v1/responses
允许模型在生成回复前联网搜索最新信息。
支持的模型:gpt-4o-mini, gpt-4.1, gpt-4o

请求参数

Header 参数

Body 参数application/json

示例
{
    "model": "gpt-4.1",
    "tools": [
        {
            "type": "web_search_preview"
        }
    ],
    "input": "What was a positive news story from today?"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.xaix.me/v1/responses' \
--header 'Authorization: Bearer {YOUR_API_KEY}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "gpt-4.1",
    "tools": [
        {
            "type": "web_search_preview"
        }
    ],
    "input": "What was a positive news story from today?"
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "id": "resp_0457b50d2435687d00691207a543348191bbeece2d86389156",
    "object": "response",
    "created_at": 1762789285,
    "status": "completed",
    "background": false,
    "billing": {
        "payer": "developer"
    },
    "error": null,
    "incomplete_details": null,
    "instructions": null,
    "max_output_tokens": null,
    "max_tool_calls": null,
    "model": "gpt-4o-mini-2024-07-18",
    "output": [
        {
            "id": "ws_0457b50d2435687d00691207a646588191a3894c45a680e6e9",
            "type": "web_search_call",
            "status": "completed",
            "action": {
                "type": "search",
                "query": "今天的新闻"
            }
        },
        {
            "id": "msg_0457b50d2435687d00691207a7bdf88191a9190a410c64c987",
            "type": "message",
            "status": "completed",
            "content": [
                {
                    "type": "output_text",
                    "annotations": [
                        {
                            "type": "url_citation",
                            "end_index": 235,
                            "start_index": 158,
                            "title": "川观早8点丨全运会开幕,游泳比赛今天迎来首个金牌日;本周两股冷空气将接连影响我国;超级台风“凤凰”登陆菲律宾(2025年11月10日) - 川观新闻",
                            "url": "https://cbgc.scol.com.cn/news/6958335?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 396,
                            "start_index": 319,
                            "title": "川观早8点丨全运会开幕,游泳比赛今天迎来首个金牌日;本周两股冷空气将接连影响我国;超级台风“凤凰”登陆菲律宾(2025年11月10日) - 川观新闻",
                            "url": "https://cbgc.scol.com.cn/news/6958335?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 560,
                            "start_index": 483,
                            "title": "川观早8点丨全运会开幕,游泳比赛今天迎来首个金牌日;本周两股冷空气将接连影响我国;超级台风“凤凰”登陆菲律宾(2025年11月10日) - 川观新闻",
                            "url": "https://cbgc.scol.com.cn/news/6958335?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 753,
                            "start_index": 647,
                            "title": "美国政府指示各州收回已全额发放的11月食品援助金_新闻频道_央视网(cctv.com)",
                            "url": "https://news.cctv.com/2025/11/10/ARTIzhsWC3djCYYlVOXRyPRQ251110.shtml?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 943,
                            "start_index": 812,
                            "title": "SBS早新闻(2025年11月10日)",
                            "url": "https://www.sbs.com.au/language/chinese/zh-hans/podcast-episode/sbs-mandarin-news-11-10/7n39s1m4p?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 1138,
                            "start_index": 1020,
                            "title": "新华财经早报:11月10日_新浪财经_新浪网",
                            "url": "https://finance.sina.com.cn/money/bond/2025-11-10/doc-infwwmez1664369.shtml?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 1275,
                            "start_index": 1198,
                            "title": "川观早8点丨全运会开幕,游泳比赛今天迎来首个金牌日;本周两股冷空气将接连影响我国;超级台风“凤凰”登陆菲律宾(2025年11月10日) - 川观新闻",
                            "url": "https://cbgc.scol.com.cn/news/6958335?utm_source=openai"
                        },
                        {
                            "type": "url_citation",
                            "end_index": 1477,
                            "start_index": 1359,
                            "title": "新华财经早报:11月10日_新浪财经_新浪网",
                            "url": "https://finance.sina.com.cn/money/bond/2025-11-10/doc-infwwmez1664369.shtml?utm_source=openai"
                        }
                    ],
                    "logprobs": [],
                    "text": "以下是2025年11月10日的主要新闻摘要:\n\n**国内新闻:**\n\n- **全运会开幕**:第十五届全国运动会于11月9日在广东奥林匹克体育中心举行开幕式,粤港澳三地火炬手共同点燃主火炬。各项比赛将继续在广东、香港、澳门展开,游泳比赛今天迎来首个金牌日,跳水赛场继续上演“神仙打架”,多名乒乓球名将今天也将亮相。 ([cbgc.scol.com.cn](https://cbgc.scol.com.cn/news/6958335?utm_source=openai))\n\n- **冷空气影响**:新的一周,影响我国的冷空气仍然比较频繁,11月11日至13日、14日至17日将有两股冷空气接连影响我国。气温多波动,大家还要留意临近预报。 ([cbgc.scol.com.cn](https://cbgc.scol.com.cn/news/6958335?utm_source=openai))\n\n- **海南离岛免税新政实施首周**:11月1日至7日,海口海关共监管海南省离岛免税购物金额5.06亿元,购物人数7.29万人次,同比分别增长34.86%、3.37%。 ([cbgc.scol.com.cn](https://cbgc.scol.com.cn/news/6958335?utm_source=openai))\n\n**国际新闻:**\n\n- **美国食品援助金调整**:美国政府指示各州收回已全额发放的11月食品援助金。此前,因资金耗尽,补充营养援助计划(SNAP)已暂停发放救济金。 ([news.cctv.com](https://news.cctv.com/2025/11/10/ARTIzhsWC3djCYYlVOXRyPRQ251110.shtml?utm_source=openai))\n\n- **中国首艘电磁弹射航母入列**:中国首艘电磁弹射航母“福建舰”正式入列,标志着中国海军航母发展迈上新台阶。 ([sbs.com.au](https://www.sbs.com.au/language/chinese/zh-hans/podcast-episode/sbs-mandarin-news-11-10/7n39s1m4p?utm_source=openai))\n\n**财经新闻:**\n\n- **中瑞部级金融会议**:第三次中瑞部级金融会议在瑞士伯尔尼举行,双方围绕经济金融形势、全球金融治理等议题进行了深入交流。 ([finance.sina.com.cn](https://finance.sina.com.cn/money/bond/2025-11-10/doc-infwwmez1664369.shtml?utm_source=openai))\n\n- **国家统计局发布CPI数据**:10月份,全国居民消费价格指数(CPI)同比上涨0.2%,环比上涨0.2%。 ([cbgc.scol.com.cn](https://cbgc.scol.com.cn/news/6958335?utm_source=openai))\n\n**科技新闻:**\n\n- **世界互联网大会闭幕**:2025年世界互联网大会乌镇峰会于11月9日闭幕,吸引了来自130多个国家和地区的1600多名嘉宾现场参会。 ([finance.sina.com.cn](https://finance.sina.com.cn/money/bond/2025-11-10/doc-infwwmez1664369.shtml?utm_source=openai))\n\n以上是今日的主要新闻摘要,供您参考。 "
                }
            ],
            "role": "assistant"
        }
    ],
    "parallel_tool_calls": true,
    "previous_response_id": null,
    "prompt_cache_key": null,
    "prompt_cache_retention": null,
    "reasoning": {
        "effort": null,
        "summary": null
    },
    "safety_identifier": null,
    "service_tier": "default",
    "store": true,
    "temperature": 1,
    "text": {
        "format": {
            "type": "text"
        },
        "verbosity": "medium"
    },
    "tool_choice": "auto",
    "tools": [
        {
            "type": "web_search_preview",
            "search_context_size": "medium",
            "user_location": {
                "type": "approximate",
                "city": null,
                "country": "US",
                "region": null,
                "timezone": null
            }
        }
    ],
    "top_logprobs": 0,
    "top_p": 1,
    "truncation": "disabled",
    "usage": {
        "input_tokens": 304,
        "input_tokens_details": {
            "cached_tokens": 0
        },
        "output_tokens": 795,
        "output_tokens_details": {
            "reasoning_tokens": 0
        },
        "total_tokens": 1099
    },
    "user": null,
    "metadata": {}
}
修改于 2026-04-13 02:37:35
上一页
web search(chat)
下一页
工具调用(chat)
Built with