files
files
Page 18 of 25.
Overview
-
script-zziHCV.txt
#409
-
document-fvD9UG.docx
#410
-
video-WNcH1W.mp4
#411
-
photo-usb36Z.jpg
#412
-
audio-SQuOIa.mp3
#413
-
archive-m1TLDB.zip
#414
-
data-yN93uA.csv
#415
-
spreadsheet-ZKCsZl.xlsx
#416
-
photo-h42W5E.jpg
#417
-
video-MHkEib.mp4
#418
-
archive-Hm7lMl.zip
#419
-
video-0ZpOkg.mp4
#420
-
document-sXuh8m.docx
#421
-
document-uKDmFR.docx
#422
-
audio-CfEk08.mp3
#423
-
script-vIZfnK.txt
#424
-
script-kcRRPg.txt
#425
-
image-E2037N.png
#426
-
audio-RefF9Q.mp3
#427
-
image-uQxpAV.png
#428
-
photo-Akv4Dm.jpg
#429
-
video-SGpPmX.mp4
#430
-
photo-IDCJQ1.jpg
#431
-
photo-nJERlM.jpg
#432
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/files?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/files.d.ts https://example-data.com/types/files.d.ts
import type { File, ListEnvelope } from "./types/files";
const res = await fetch(
"https://example-data.com/api/v1/files?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<File>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 409,
"ownerUserId": 208,
"name": "script-zziHCV.txt",
"mimeType": "text/plain",
"sizeBytes": 48509997,
"url": "https://files.example.com/objects/409/script-zziHCV.txt",
"parentFolderId": 10,
"isFolder": false,
"createdAt": "2025-07-24T01:05:32.029Z",
"updatedAt": "2026-01-19T05:40:04.120Z"
},
{
"id": 410,
"ownerUserId": 150,
"name": "document-fvD9UG.docx",
"mimeType": "application/msword",
"sizeBytes": 35227880,
"url": "https://files.example.com/objects/410/document-fvD9UG.docx",
"parentFolderId": 141,
"isFolder": false,
"createdAt": "2025-10-11T22:20:21.712Z",
"updatedAt": "2026-05-03T10:49:36.512Z"
},
{
"id": 411,
"ownerUserId": 209,
"name": "video-WNcH1W.mp4",
"mimeType": "video/mp4",
"sizeBytes": 52366565,
"url": "https://files.example.com/objects/411/video-WNcH1W.mp4",
"parentFolderId": 107,
"isFolder": false,
"createdAt": "2026-03-11T04:30:18.441Z",
"updatedAt": "2026-03-13T21:13:59.838Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=18&limit=24",
"first": "/api/v1/files?page=1&limit=24",
"last": "/api/v1/files?page=25&limit=24",
"next": "/api/v1/files?page=19&limit=24",
"prev": "/api/v1/files?page=17&limit=24"
}
}