files
files
Page 2 of 10.
- ownerUserId
- 243
- name
- Archive
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/25
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 144
- name
- Templates
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/26
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 189
- name
- Exports
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/27
- parentFolderId
- 7
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 152
- name
- Reports
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/28
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 59
- name
- Exports
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/29
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 188
- name
- Projects
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/30
- parentFolderId
- —
- isFolder
- true
- 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": 25,
"ownerUserId": 243,
"name": "Archive",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/25",
"parentFolderId": null,
"isFolder": true,
"createdAt": "2025-10-02T12:44:17.721Z",
"updatedAt": "2026-03-29T12:55:34.999Z"
},
{
"id": 26,
"ownerUserId": 144,
"name": "Templates",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/26",
"parentFolderId": null,
"isFolder": true,
"createdAt": "2025-04-22T03:49:59.585Z",
"updatedAt": "2026-04-06T09:27:10.579Z"
},
{
"id": 27,
"ownerUserId": 189,
"name": "Exports",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/27",
"parentFolderId": 7,
"isFolder": true,
"createdAt": "2024-08-02T05:34:06.877Z",
"updatedAt": "2025-08-13T16:11:02.215Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=2",
"next": "/api/v1/files?page=3",
"prev": "/api/v1/files?page=1"
}
}