example-data.com

files

files

Page 5 of 10.

ownerUserId
236
name
Archive
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/97
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
91
name
Imports
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/98
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
245
name
Documents
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/99
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
235
name
Templates
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/100
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
128
name
Media
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/101
parentFolderId
75
isFolder
true
createdAt
updatedAt
ownerUserId
68
name
Data
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/102
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": 97,
      "ownerUserId": 236,
      "name": "Archive",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/97",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2025-08-06T16:03:05.430Z",
      "updatedAt": "2026-02-04T03:44:13.553Z"
    },
    {
      "id": 98,
      "ownerUserId": 91,
      "name": "Imports",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/98",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2026-01-09T12:25:11.530Z",
      "updatedAt": "2026-03-14T03:25:16.666Z"
    },
    {
      "id": 99,
      "ownerUserId": 245,
      "name": "Documents",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/99",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2026-03-23T11:26:13.183Z",
      "updatedAt": "2026-04-19T16:43:07.854Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=5",
    "next": "/api/v1/files?page=6",
    "prev": "/api/v1/files?page=4"
  }
}
Draftbit