GET
/
openai
/
v1
/
files
/
{file_id}
/
content
查询文件内容
curl --request GET \
  --url https://api.ppinfra.com/openai/v1/files/{file_id}/content \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
根据文件 ID 获取指定文件的内容。通常用于下载批处理的输出文件或错误文件。

请求头

Content-Type
string
required
枚举值: application/json
Authorization
string
required
Bearer 身份验证格式,例如:Bearer {{API 密钥}}。

路径参数

file_id
string
required
要获取内容的文件唯一标识符。

响应

响应返回原始文件内容。对于批处理输出文件,内容为 JSONL 格式,其中每一行包含一个批处理请求的结果。 示例响应 对于批处理输出文件,每一行的内容类似如下:
{
  "custom_id": "request-2589",
  "error": null,
  "id": "batch_req_task_d2c",
  "response": {
    "body": {
      "id": "29e1432c-edfb-44a4-b531-c23c600abfae",
      "object": "chat.completion",
      "created": 1754902266,
      "model": "deepseek-test",
      "choices": [
        {
          "index": 0,
          "message": {
            "role": "assistant",
            "content": "你好!👋 今天我能为你做些什么?😊"
          },
          "finish_reason": "stop"
        }
      ],
      "usage": {
        "prompt_tokens": 5,
        "completion_tokens": 13,
        "total_tokens": 18
      }
    },
    "request_id": "request-2589",
    "status_code": 200
  }
}