GET
/
files
List Files
curl --request GET \
  --url https://api.chunkr.ai/api/v1/files \
  --header 'Authorization: <api-key>'
{
  "files": [
    {
      "content_type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "file_id": "<string>",
      "file_name": "<string>",
      "file_size": 123,
      "metadata": {},
      "url": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Query Parameters

limit
integer

Number of files per page

cursor
string<date-time>

Cursor for pagination (created_at)

start
string<date-time>

Start date

end
string<date-time>

End date

sort
enum<string>

Sort order: 'asc' for ascending, 'desc' for descending (default)

Available options:
asc,
desc

Response

200
application/json

Paginated list of files

The response is of type object.