文件列表查询
GET
/v1/files请求参数
Header 参数
Authorization
string
必需
请求鉴权的 APIKey,由百川提供。Bearer 开头
示例值:
Bearer $API_KEY
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
data
array [object {6}]
必需
返回文件对象的 list
id
string
必需
文件唯一标识,用于文件接口
bytes
integer
文件字节数大小
created_at
integer
必需
创建时间,Unix 时间戳(秒)
filename
string
文件名称
object
string
必需
类型,文件对象类型为'file'
purpose
string
必需
文件的使用意图。如'knowledge-base'
object
string
必需
对象类型"list"
示例
{
"data": [
{
"id": "file-123",
"bytes": 1562,
"created_at": 1701832828,
"filename": "xxx.pdf",
"object": "file",
"purpose": "knowledge-base"
},
{
"id": "file-124123",
"bytes": 183237,
"created_at": 1702201134,
"filename": "xxx.doc",
"object": "file",
"purpose": "knowledge-base"
}
],
"object": "list"
}
最后修改时间: 1 年前