files
files
Page 3 of 10.
- ownerUserId
- 127
- name
- Projects
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/49
- parentFolderId
- 10
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 72
- name
- Imports
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/50
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 102
- name
- Images
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/51
- parentFolderId
- 47
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 20
- name
- Designs
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/52
- parentFolderId
- 48
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 66
- name
- Images
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/53
- parentFolderId
- —
- isFolder
- true
- createdAt
- updatedAt
- ownerUserId
- 124
- name
- Backups
- mimeType
- application/x-directory
- sizeBytes
- 0
- url
- https://files.example.com/folders/54
- 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": 49,
"ownerUserId": 127,
"name": "Projects",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/49",
"parentFolderId": 10,
"isFolder": true,
"createdAt": "2025-06-18T22:30:10.260Z",
"updatedAt": "2025-12-27T08:28:41.274Z"
},
{
"id": 50,
"ownerUserId": 72,
"name": "Imports",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/50",
"parentFolderId": null,
"isFolder": true,
"createdAt": "2024-11-18T02:10:55.103Z",
"updatedAt": "2025-09-25T07:50:32.136Z"
},
{
"id": 51,
"ownerUserId": 102,
"name": "Images",
"mimeType": "application/x-directory",
"sizeBytes": 0,
"url": "https://files.example.com/folders/51",
"parentFolderId": 47,
"isFolder": true,
"createdAt": "2025-11-28T13:45:37.641Z",
"updatedAt": "2025-12-21T20:44:57.638Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 600,
"totalPages": 25
},
"links": {
"self": "/api/v1/files?page=3",
"next": "/api/v1/files?page=4",
"prev": "/api/v1/files?page=2"
}
}