files
files
Page 9 of 10.
-
script-FabNLI.txt
#193
-
archive-iyZ0Cp.zip
#194
-
audio-7rkBAJ.mp3
#195
-
data-K0F0de.csv
#196
-
spreadsheet-PvuWXR.xlsx
#197
-
config-JsNddm.json
#198
-
presentation-7DFTCs.pptx
#199
-
archive-BrGFpn.zip
#200
-
script-xI04Ia.txt
#201
-
audio-eLXXo7.mp3
#202
-
spreadsheet-3Dz4gr.xlsx
#203
-
photo-X0Jvhg.jpg
#204
-
audio-m9KEgv.mp3
#205
-
image-Qk4NMl.png
#206
-
report-ywn5yI.pdf
#207
-
config-n38UK1.json
#208
-
report-MDV9hp.pdf
#209
-
report-dCmaLH.pdf
#210
-
audio-d6mhku.mp3
#211
-
report-GodEHm.pdf
#212
-
document-UgqRnr.docx
#213
-
audio-jWqTZU.mp3
#214
-
archive-FemH7C.zip
#215
-
data-zxYEYR.csv
#216
- ownerUserId
- 14
- name
- script-FabNLI.txt
- mimeType
- text/plain
- sizeBytes
- 16521730
- url
- https://files.example.com/objects/193/script-FabNLI.txt
- parentFolderId
- 126
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 13
- name
- archive-iyZ0Cp.zip
- mimeType
- application/zip
- sizeBytes
- 1939613
- url
- https://files.example.com/objects/194/archive-iyZ0Cp.zip
- parentFolderId
- 124
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 56
- name
- audio-7rkBAJ.mp3
- mimeType
- audio/mpeg
- sizeBytes
- 43601716
- url
- https://files.example.com/objects/195/audio-7rkBAJ.mp3
- parentFolderId
- 12
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 44
- name
- data-K0F0de.csv
- mimeType
- text/csv
- sizeBytes
- 13178580
- url
- https://files.example.com/objects/196/data-K0F0de.csv
- parentFolderId
- 56
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 31
- name
- spreadsheet-PvuWXR.xlsx
- mimeType
- application/vnd.ms-excel
- sizeBytes
- 33699186
- url
- https://files.example.com/objects/197/spreadsheet-PvuWXR.xlsx
- parentFolderId
- 30
- isFolder
- false
- createdAt
- updatedAt
- ownerUserId
- 78
- name
- config-JsNddm.json
- mimeType
- application/json
- sizeBytes
- 32964609
- url
- https://files.example.com/objects/198/config-JsNddm.json
- parentFolderId
- 6
- 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": 193,
"ownerUserId": 14,
"name": "script-FabNLI.txt",
"mimeType": "text/plain",
"sizeBytes": 16521730,
"url": "https://files.example.com/objects/193/script-FabNLI.txt",
"parentFolderId": 126,
"isFolder": false,
"createdAt": "2026-04-16T08:54:55.266Z",
"updatedAt": "2026-05-09T03:19:47.537Z"
},
{
"id": 194,
"ownerUserId": 13,
"name": "archive-iyZ0Cp.zip",
"mimeType": "application/zip",
"sizeBytes": 1939613,
"url": "https://files.example.com/objects/194/archive-iyZ0Cp.zip",
"parentFolderId": 124,
"isFolder": false,
"createdAt": "2025-12-28T17:19:49.268Z",
"updatedAt": "2026-02-04T09:03:59.765Z"
},
{
"id": 195,
"ownerUserId": 56,
"name": "audio-7rkBAJ.mp3",
"mimeType": "audio/mpeg",
"sizeBytes": 43601716,
"url": "https://files.example.com/objects/195/audio-7rkBAJ.mp3",
"parentFolderId": 12,
"isFolder": false,
"createdAt": "2024-05-28T18:30:42.638Z",
"updatedAt": "2024-07-14T13:24:40.721Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=9",
"next": "/api/v1/files?page=10",
"prev": "/api/v1/files?page=8"
}
}