聚合API接口文档
  1. 常用请求
聚合API接口文档
  • 常用请求
    • 获取模型
      • 获取模型
      • 获取模型 - gemini
    • 文本嵌入
      • 文本嵌入
      • 文本嵌入 - gemini
    • 令牌余额查询
      GET
    • 基本请求
      POST
    • 流式请求
      POST
    • 连续对话
      POST
    • 识图请求 - url
      POST
    • 识图请求 - base64
      POST
    • 工具(函数)调用
      POST
    • 文档重排序
      POST
    • 流式出图/视频
      POST
    • gpt-5.1开思考显示
      POST
    • codex模型请求
      POST
    • chat兼容思考显示
      POST
    • 视频识别
      POST
    • PDF识别
      POST
    • 结构化输出
      POST
  • 图片/视频生成
    • OpenAI chat格式
      • 流式出图/视频(推荐)
      • 流式出图/视频 - 带图生成
    • Google 生图 - nano banana
      • Google Gemini生图
      • Google Gemini改图
      • Google Gemini生图 流式
    • OpenAI image格式
      • 生成图像
      • 编辑图像
    • OpenAI sora格式
      • 创建视频
      • 获取视频任务状态
      • 获取视频内容
    • Midjourney绘图
      • 任务提交
        • 文生图 - Imagine
        • 关联按钮动作 - Action
        • 图生文 - Describe
        • 图像混合 - Blend
        • 局部重绘 - Modal
      • 任务查询
        • 多任务查询 - ListByCondition
        • 单任务查询 - FetchFromTask
        • Seed查询 - ImageSeed
  • 音频转录
    • 音频转录
      POST
    • 音频翻译
      POST
    • 文本转语音
      POST
    • Gemini 生成音频(TTS)
      POST
  • 高阶用法
    • Gemini原生格式
      • 普通对话
      • 开启思考
      • 流式请求
      • 结构化输出
      • 函数调用
      • PDF识别
      • 图像识别
      • 视频识别
    • Anthropic原生格式
      • 普通对话
      • 流式请求
      • 开启思考
      • 图像识别
      • 函数调用
      • 内置联网
    • 对话完整传参示例
      • OpenAI对话格式 - chat
      • OpenAI对话格式 - responses
      • Claude对话格式 - messages
      • Gemini对话格式 - v1beta
  • 在代码工具使用
    • 在codex中使用
    • 在gemini cli中使用
    • 在claudecode中使用
  • 数据模型
    • Schemas
      • ErrorResponse
      • ModelsResponse
      • GeminiModelsResponse
      • ChatCompletionRequest
      • ChatCompletionResponse
      • CompletionRequest
      • CompletionResponse
      • ResponsesRequest
      • ResponsesResponse
      • ClaudeRequest
      • ClaudeResponse
      • EmbeddingRequest
      • EmbeddingResponse
      • ImageGenerationRequest
      • ImageResponse
      • AudioTranscriptionResponse
      • SpeechRequest
      • RerankRequest
      • RerankResponse
      • VideoRequest
      • ModerationRequest
      • VideoResponse
      • ModerationResponse
      • VideoTaskResponse
      • GeminiRequest
      • GeminiResponse
      • OpenAIVideoError
      • Model
      • Message
      • MessageContent
      • ToolCall
      • Tool
      • ResponseFormat
      • Usage
      • ClaudeMessage
      • VideoTaskMetadata
      • VideoTaskError
      • ChatCompletionStreamResponse
      • ResponsesStreamResponse
      • ImageEditRequest
      • AudioTranscriptionRequest
      • AudioTranslationRequest
      • OpenAIVideo
  1. 常用请求

工具(函数)调用

POST
{{url}}/v1/chat/completions
最后修改时间:2025-11-29 03:15:09

请求参数

Header 参数

Body 参数application/json

示例
{
    "model": "gpt-4.1-mini",
    "messages": [
        {
            "role": "user",
            "content": "波士顿今天的天气怎么样?"
        }
    ],
    "tools": [
        {
            "type": "function",
            "function": {
                "name": "get_current_weather",
                "description": "获取指定位置的当前天气",
                "parameters": {
                    "type": "object",
                    "properties": {
                        "location": {
                            "type": "string",
                            "description": "城市和州,例如 San Francisco, CA"
                        },
                        "unit": {
                            "type": "string",
                            "enum": [
                                "celsius",
                                "fahrenheit"
                            ]
                        }
                    },
                    "required": [
                        "location"
                    ]
                }
            }
        }
    ],
    "tool_choice": "auto"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://api.example.com/v1/chat/completions' \
--header 'Authorization: Bearer sk-xxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "gpt-4.1-mini",
    "messages": [
        {
            "role": "user",
            "content": "波士顿今天的天气怎么样?"
        }
    ],
    "tools": [
        {
            "type": "function",
            "function": {
                "name": "get_current_weather",
                "description": "获取指定位置的当前天气",
                "parameters": {
                    "type": "object",
                    "properties": {
                        "location": {
                            "type": "string",
                            "description": "城市和州,例如 San Francisco, CA"
                        },
                        "unit": {
                            "type": "string",
                            "enum": [
                                "celsius",
                                "fahrenheit"
                            ]
                        }
                    },
                    "required": [
                        "location"
                    ]
                }
            }
        }
    ],
    "tool_choice": "auto"
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "choices": [
        {
            "content_filter_result": {
                "error": {
                    "code": "content_filter_error",
                    "message": "The contents are not filtered"
                }
            },
            "content_filter_results": {},
            "finish_reason": "tool_calls",
            "index": 0,
            "logprobs": null,
            "message": {
                "annotations": [],
                "content": null,
                "refusal": null,
                "role": "assistant",
                "tool_calls": [
                    {
                        "function": {
                            "arguments": "{\"location\":\"Boston, MA\",\"unit\":\"celsius\"}",
                            "name": "get_current_weather"
                        },
                        "id": "call_9Tu5ZwYvMpV1csPXLqTeM5UI",
                        "type": "function"
                    }
                ]
            }
        }
    ],
    "created": 1764342878,
    "id": "chatcmpl-CguT8XqGPVXTUe64KZgmjuF3oPms6",
    "model": "gpt-4.1-mini-2025-04-14",
    "object": "chat.completion",
    "prompt_filter_results": [
        {
            "prompt_index": 0,
            "content_filter_results": {}
        }
    ],
    "system_fingerprint": "fp_3dcd5944f5",
    "usage": {
        "completion_tokens": 23,
        "completion_tokens_details": {
            "accepted_prediction_tokens": 0,
            "audio_tokens": 0,
            "reasoning_tokens": 0,
            "rejected_prediction_tokens": 0
        },
        "prompt_tokens": 75,
        "prompt_tokens_details": {
            "audio_tokens": 0,
            "cached_tokens": 0
        },
        "total_tokens": 98
    }
}
修改于 2025-11-29 03:15:09
上一页
识图请求 - base64
下一页
文档重排序
Built with