example-data.com

files

files

Page 7 of 10.

ownerUserId
122
name
Templates
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/145
parentFolderId
44
isFolder
true
createdAt
updatedAt
ownerUserId
156
name
Templates
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/146
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
75
name
Documents
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/147
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
116
name
Images
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/148
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
22
name
Archive
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/149
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
237
name
Resources
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/150
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": 145,
      "ownerUserId": 122,
      "name": "Templates",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/145",
      "parentFolderId": 44,
      "isFolder": true,
      "createdAt": "2026-04-10T18:47:40.178Z",
      "updatedAt": "2026-05-16T19:01:15.657Z"
    },
    {
      "id": 146,
      "ownerUserId": 156,
      "name": "Templates",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/146",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2025-11-14T04:31:02.901Z",
      "updatedAt": "2026-01-04T02:18:22.832Z"
    },
    {
      "id": 147,
      "ownerUserId": 75,
      "name": "Documents",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/147",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2025-05-27T04:12:55.198Z",
      "updatedAt": "2025-10-10T03:14:27.522Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=7",
    "next": "/api/v1/files?page=8",
    "prev": "/api/v1/files?page=6"
  }
}
Draftbit