Retrieve file

GET /files/{id}

返回已上传的文件信息。

Path parameters

  • id string Required

    Format should match the following pattern: ^file-.

Responses

  • 200 application/json

    file found

    Hide response attributes Show response attributes object
  • 404 application/json

    file not found

GET /files/{id}
curl \
 --request GET 'https://api.kuaichuti.net/v1/files/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "file-67d79d01e88e5d44933748fd",
  "bytes": 495,
  "object": "file",
  "filename": "Exam Attachment 1",
  "created_at": "2025-03-17T11:54:41.159+08:00"
}
Response examples (404)
{
  "error": {
    "type": "invalid_request_error",
    "message": "No such File object: invalid"
  }
}