跳转到主要内容
GET
/
api
/
v1
/
files
/
quota
查询文件配额
curl --request GET \
  --url https://files-api.evolink.ai/api/v1/files/quota \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "code": 200,
  "data": {
    "user_group": "default",
    "used_files": 35,
    "max_files": 2000,
    "remain_files": 65,
    "is_custom": false,
    "quota_reason": ""
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.evolink.ai/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

##所有接口均需要使用Bearer Token进行认证##

获取 API Key :

访问 API Key 管理页面 获取您的 API Key

使用时在请求头中添加:

Authorization: Bearer YOUR_API_KEY

响应

200 - application/json

查询成功

success
boolean

请求是否成功

示例:

true

code
integer

响应状态码

示例:

200

data
object