files
files
Page 7 of 10.
-
Templates
#145
-
Templates
#146
-
Documents
#147
-
Images
#148
-
Archive
#149
-
Resources
#150
-
data-UyTJOV.csv
#151
-
report-VMJ1Rh.pdf
#152
-
config-1Nc3lW.json
#153
-
spreadsheet-8oEdkJ.xlsx
#154
-
data-FUFLNV.csv
#155
-
audio-OysbOa.mp3
#156
-
image-QSaLUu.png
#157
-
script-tC0aOV.txt
#158
-
archive-zkju5G.zip
#159
-
presentation-WNjcmH.pptx
#160
-
archive-YSV8H2.zip
#161
-
script-nB4Jsy.txt
#162
-
video-ESYK4S.mp4
#163
-
presentation-WVl83x.pptx
#164
-
archive-0z1aHY.zip
#165
-
report-mYEbzw.pdf
#166
-
script-JmqdEd.txt
#167
-
document-GEgnJO.docx
#168
- ownerUserId
- 122
- name
- Templates
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/145
- parentFolderId
- 44
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 156
- name
- Templates
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/146
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 75
- name
- Documents
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/147
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 116
- name
- Images
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/148
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 22
- name
- Archive
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/149
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 237
- name
- Resources
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/150
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/files?limit=25"const res = await fetch(
"https://example-data.com/api/v1/files?limit=25"
);
const { data, meta } = await res.json();import type { File, ListEnvelope } from "https://example-data.com/types/files.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/files?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<File>;import requests
res = requests.get(
"https://example-data.com/api/v1/files",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 145,
"ownerUserId": 122,
"name": "Templates",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/145",
"parentFolderId": 44,
"isFolder": true,
"createdAt": "2026-04-10T18:47:40.178Z",
"updatedAt": "2026-05-16T19:01:15.657Z"
},
{
"id": 146,
"ownerUserId": 156,
"name": "Templates",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/146",
"parentFolderId": null,
"isFolder": true,
"createdAt": "2025-11-14T04:31:02.901Z",
"updatedAt": "2026-01-04T02:18:22.832Z"
},
{
"id": 147,
"ownerUserId": 75,
"name": "Documents",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/147",
"parentFolderId": null,
"isFolder": true,
"createdAt": "2025-05-27T04:12:55.198Z",
"updatedAt": "2025-10-10T03:14:27.522Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=7",
"next": "/api/v1/files?page=8",
"prev": "/api/v1/files?page=6"
}
}