files
files
Page 10 of 10.
-
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
- 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
- updatedAt
- ownerUserId
- 183
- name
- document-rGKqgF.docx
- mimeType
- application/msword
- sizeBytes
- 21863054
- url
- https://files.example.com/objects/218/document-rGKqgF.docx
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
- 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
- updatedAt
- ownerUserId
- 76
- name
- archive-lEDjlK.zip
- mimeType
- application/zip
- sizeBytes
- 34362831
- url
- https://files.example.com/objects/220/archive-lEDjlK.zip
- parentFolderId
- 30
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 197
- name
- report-sqUyif.pdf
- mimeType
- application/pdf
- sizeBytes
- 14282752
- url
- https://files.example.com/objects/221/report-sqUyif.pdf
- parentFolderId
- 31
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 189
- name
- document-FVvq9Z.docx
- mimeType
- application/msword
- sizeBytes
- 48880433
- url
- https://files.example.com/objects/222/document-FVvq9Z.docx
- parentFolderId
- 90
- 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": 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",
"next": "/api/v1/files?page=11",
"prev": "/api/v1/files?page=9"
}
}