Skip to main content
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

Paginated list of files

files
object[]
required

List of files

has_more
boolean
required

Whether there are more files to fetch

next_cursor
string<date-time> | null

Cursor for pagination (timestamp) e.g. 2025-01-01T00:00:00Z