example-data.com

files

files

Page 9 of 10.

ownerUserId
14
name
script-FabNLI.txt
mimeType
text/plain
sizeBytes
16521730
url
https://files.example.com/objects/193/script-FabNLI.txt
parentFolderId
126
isFolder
false
createdAt
updatedAt
ownerUserId
13
name
archive-iyZ0Cp.zip
mimeType
application/zip
sizeBytes
1939613
url
https://files.example.com/objects/194/archive-iyZ0Cp.zip
parentFolderId
124
isFolder
false
createdAt
updatedAt
ownerUserId
56
name
audio-7rkBAJ.mp3
mimeType
audio/mpeg
sizeBytes
43601716
url
https://files.example.com/objects/195/audio-7rkBAJ.mp3
parentFolderId
12
isFolder
false
createdAt
updatedAt
ownerUserId
44
name
data-K0F0de.csv
mimeType
text/csv
sizeBytes
13178580
url
https://files.example.com/objects/196/data-K0F0de.csv
parentFolderId
56
isFolder
false
createdAt
updatedAt
ownerUserId
31
name
spreadsheet-PvuWXR.xlsx
mimeType
application/vnd.ms-excel
sizeBytes
33699186
url
https://files.example.com/objects/197/spreadsheet-PvuWXR.xlsx
parentFolderId
30
isFolder
false
createdAt
updatedAt
ownerUserId
78
name
config-JsNddm.json
mimeType
application/json
sizeBytes
32964609
url
https://files.example.com/objects/198/config-JsNddm.json
parentFolderId
6
isFolder
false
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": 193,
      "ownerUserId": 14,
      "name": "script-FabNLI.txt",
      "mimeType": "text/plain",
      "sizeBytes": 16521730,
      "url": "https://files.example.com/objects/193/script-FabNLI.txt",
      "parentFolderId": 126,
      "isFolder": false,
      "createdAt": "2026-04-16T08:54:55.266Z",
      "updatedAt": "2026-05-09T03:19:47.537Z"
    },
    {
      "id": 194,
      "ownerUserId": 13,
      "name": "archive-iyZ0Cp.zip",
      "mimeType": "application/zip",
      "sizeBytes": 1939613,
      "url": "https://files.example.com/objects/194/archive-iyZ0Cp.zip",
      "parentFolderId": 124,
      "isFolder": false,
      "createdAt": "2025-12-28T17:19:49.268Z",
      "updatedAt": "2026-02-04T09:03:59.765Z"
    },
    {
      "id": 195,
      "ownerUserId": 56,
      "name": "audio-7rkBAJ.mp3",
      "mimeType": "audio/mpeg",
      "sizeBytes": 43601716,
      "url": "https://files.example.com/objects/195/audio-7rkBAJ.mp3",
      "parentFolderId": 12,
      "isFolder": false,
      "createdAt": "2024-05-28T18:30:42.638Z",
      "updatedAt": "2024-07-14T13:24:40.721Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=9",
    "next": "/api/v1/files?page=10",
    "prev": "/api/v1/files?page=8"
  }
}
Draftbit