메인 콘텐츠로 건너뛰기
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
필수

##모든 API는 Bearer Token 인증이 필요합니다##

API Key 받기:

API Key 관리 페이지를 방문하여 API Key를 받으세요

요청 헤더에 추가:

Authorization: Bearer YOUR_API_KEY

응답

200 - application/json

성공

success
boolean

요청 성공 여부

예시:

true

code
integer

응답 상태 코드

예시:

200

data
object