files
files
Page 10 of 25.
Overview
-
image-dCg4tS.png
#217
-
document-rGKqgF.docx
#218
-
archive-Xbz5bv.zip
#219
-
archive-lEDjlK.zip
#220
-
report-sqUyif.pdf
#221
-
document-FVvq9Z.docx
#222
-
presentation-Fc6rLD.pptx
#223
-
presentation-OqSGHS.pptx
#224
-
document-ZN6EsG.docx
#225
-
archive-G9Nx22.zip
#226
-
video-CZqIjx.mp4
#227
-
script-5iPLKC.txt
#228
-
spreadsheet-CyfK4Z.xlsx
#229
-
image-nSdRrk.png
#230
-
presentation-F55YqA.pptx
#231
-
script-unA7V5.txt
#232
-
video-bqWbBc.mp4
#233
-
audio-yg4DiH.mp3
#234
-
photo-iJy76d.jpg
#235
-
photo-PaU4bi.jpg
#236
-
presentation-MjAbs9.pptx
#237
-
video-GZas0A.mp4
#238
-
script-9jJFmQ.txt
#239
-
image-tye6PT.png
#240
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": 217,
"ownerUserId": 45,
"name": "image-dCg4tS.png",
"mimeType": "image/png",
"sizeBytes": 49077307,
"url": "https://files.example.com/objects/217/image-dCg4tS.png",
"parentFolderId": 38,
"isFolder": false,
"createdAt": "2025-02-18T20:32:11.497Z",
"updatedAt": "2025-08-31T03:26:34.639Z"
},
{
"id": 218,
"ownerUserId": 183,
"name": "document-rGKqgF.docx",
"mimeType": "application/msword",
"sizeBytes": 21863054,
"url": "https://files.example.com/objects/218/document-rGKqgF.docx",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-01-07T18:23:39.718Z",
"updatedAt": "2026-04-30T16:50:10.928Z"
},
{
"id": 219,
"ownerUserId": 84,
"name": "archive-Xbz5bv.zip",
"mimeType": "application/zip",
"sizeBytes": 51248747,
"url": "https://files.example.com/objects/219/archive-Xbz5bv.zip",
"parentFolderId": 71,
"isFolder": false,
"createdAt": "2026-04-23T18:23:44.968Z",
"updatedAt": "2026-05-07T23:51:10.305Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=10&limit=24",
"first": "/api/v1/files?page=1&limit=24",
"last": "/api/v1/files?page=25&limit=24",
"next": "/api/v1/files?page=11&limit=24",
"prev": "/api/v1/files?page=9&limit=24"
}
}