example-data.com

files

files

Page 4 of 10.

ownerUserId
140
name
Exports
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/73
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
232
name
Images
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/74
parentFolderId
4
isFolder
true
createdAt
updatedAt
ownerUserId
141
name
Data
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/75
parentFolderId
6
isFolder
true
createdAt
updatedAt
ownerUserId
133
name
Imports
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/76
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
196
name
Templates
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/77
parentFolderId
isFolder
true
createdAt
updatedAt
ownerUserId
25
name
Archive
mimeType
application/x-directory
sizeBytes
0
url
https://files.example.com/folders/78
parentFolderId
69
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": 73,
      "ownerUserId": 140,
      "name": "Exports",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/73",
      "parentFolderId": null,
      "isFolder": true,
      "createdAt": "2025-01-16T17:55:28.011Z",
      "updatedAt": "2026-01-29T21:26:00.198Z"
    },
    {
      "id": 74,
      "ownerUserId": 232,
      "name": "Images",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/74",
      "parentFolderId": 4,
      "isFolder": true,
      "createdAt": "2026-02-21T05:52:55.457Z",
      "updatedAt": "2026-05-07T22:47:12.984Z"
    },
    {
      "id": 75,
      "ownerUserId": 141,
      "name": "Data",
      "mimeType": "application/x-directory",
      "sizeBytes": 0,
      "url": "https://files.example.com/folders/75",
      "parentFolderId": 6,
      "isFolder": true,
      "createdAt": "2025-04-17T23:29:26.898Z",
      "updatedAt": "2025-05-27T08:30:25.355Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=4",
    "next": "/api/v1/files?page=5",
    "prev": "/api/v1/files?page=3"
  }
}
Draftbit