files
files
Page 8 of 10.
-
report-5J9GHD.pdf
#169
-
presentation-6STNDo.pptx
#170
-
script-TikHcI.txt
#171
-
archive-wyVBoW.zip
#172
-
photo-Ob7wox.jpg
#173
-
config-wJweWz.json
#174
-
photo-mdhS3D.jpg
#175
-
script-S8QHCb.txt
#176
-
report-4UlMq4.pdf
#177
-
photo-WwGBMW.jpg
#178
-
script-6KFXAW.txt
#179
-
photo-drkZ6t.jpg
#180
-
spreadsheet-Surz4I.xlsx
#181
-
document-2zXkJa.docx
#182
-
archive-jGmHd1.zip
#183
-
archive-t8ZfZs.zip
#184
-
archive-6WsPPi.zip
#185
-
document-pCAUJj.docx
#186
-
video-hZEodu.mp4
#187
-
video-JP6fy4.mp4
#188
-
photo-OdHoFf.jpg
#189
-
archive-vjQZjv.zip
#190
-
script-OeGzdw.txt
#191
-
archive-ncFwj4.zip
#192
- ownerUserId
- 218
- name
- report-5J9GHD.pdf
- mimeType
- application/pdf
- sizeBytes
- 50243604
- url
- https://files.example.com/objects/169/report-5J9GHD.pdf
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 228
- name
- presentation-6STNDo.pptx
- mimeType
- application/vnd.ms-powerpoint
- sizeBytes
- 39854156
- url
- https://files.example.com/objects/170/presentation-6STNDo.pptx
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 213
- name
- script-TikHcI.txt
- mimeType
- text/plain
- sizeBytes
- 1268806
- url
- https://files.example.com/objects/171/script-TikHcI.txt
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 127
- name
- archive-wyVBoW.zip
- mimeType
- application/zip
- sizeBytes
- 20435647
- url
- https://files.example.com/objects/172/archive-wyVBoW.zip
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 149
- name
- photo-Ob7wox.jpg
- mimeType
- image/jpeg
- sizeBytes
- 51475897
- url
- https://files.example.com/objects/173/photo-Ob7wox.jpg
- parentFolderId
- 71
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 150
- name
- config-wJweWz.json
- mimeType
- application/json
- sizeBytes
- 36879905
- url
- https://files.example.com/objects/174/config-wJweWz.json
- parentFolderId
- 128
- isFolder
- false
- 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": 169,
"ownerUserId": 218,
"name": "report-5J9GHD.pdf",
"mimeType": "application/pdf",
"sizeBytes": 50243604,
"url": "https://files.example.com/objects/169/report-5J9GHD.pdf",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2024-12-30T06:57:00.352Z",
"updatedAt": "2025-03-30T23:06:16.677Z"
},
{
"id": 170,
"ownerUserId": 228,
"name": "presentation-6STNDo.pptx",
"mimeType": "application/vnd.ms-powerpoint",
"sizeBytes": 39854156,
"url": "https://files.example.com/objects/170/presentation-6STNDo.pptx",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-06-07T00:14:26.561Z",
"updatedAt": "2025-07-28T03:38:54.378Z"
},
{
"id": 171,
"ownerUserId": 213,
"name": "script-TikHcI.txt",
"mimeType": "text/plain",
"sizeBytes": 1268806,
"url": "https://files.example.com/objects/171/script-TikHcI.txt",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2026-04-24T15:41:07.291Z",
"updatedAt": "2026-05-13T06:21:44.182Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=8",
"next": "/api/v1/files?page=9",
"prev": "/api/v1/files?page=7"
}
}