> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hubto.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /v1/responses

> OpenAI Responses 接口。

## 用途

用于以 Responses 风格发起生成请求，适合已经采用新接口结构的客户端。

## 请求

* Method: `POST`
* URL: `https://api.hubto.ai/v1/responses`
* Auth: `Authorization: Bearer YOUR_API_KEY`
* Content-Type: `application/json`

## 最小请求体

```json theme={null}
{
  "model": "gpt-5.4",
  "input": "请概括 HubTo 的核心价值。"
}
```

## 请求示例

```bash theme={null}
curl https://api.hubto.ai/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-5.4",
    "input": "请概括 HubTo 的核心价值。"
  }'
```

## 常用字段

* `model`: 目标模型名称
* `input`: 输入内容
* `stream`: 可选，是否流式返回

## 返回

成功时返回 Responses 风格结果。你可以从输出数组或文本聚合字段中读取最终内容。
