example-data.com

files

files

Page 8 of 10.

ownerUserId
218
name
report-5J9GHD.pdf
mimeType
application/pdf
sizeBytes
50243604
url
https://files.example.com/objects/169/report-5J9GHD.pdf
parentFolderId
isFolder
false
createdAt
updatedAt
ownerUserId
228
name
presentation-6STNDo.pptx
mimeType
application/vnd.ms-powerpoint
sizeBytes
39854156
url
https://files.example.com/objects/170/presentation-6STNDo.pptx
parentFolderId
isFolder
false
createdAt
updatedAt
ownerUserId
213
name
script-TikHcI.txt
mimeType
text/plain
sizeBytes
1268806
url
https://files.example.com/objects/171/script-TikHcI.txt
parentFolderId
isFolder
false
createdAt
updatedAt
ownerUserId
127
name
archive-wyVBoW.zip
mimeType
application/zip
sizeBytes
20435647
url
https://files.example.com/objects/172/archive-wyVBoW.zip
parentFolderId
isFolder
false
createdAt
updatedAt
ownerUserId
149
name
photo-Ob7wox.jpg
mimeType
image/jpeg
sizeBytes
51475897
url
https://files.example.com/objects/173/photo-Ob7wox.jpg
parentFolderId
71
isFolder
false
createdAt
updatedAt
ownerUserId
150
name
config-wJweWz.json
mimeType
application/json
sizeBytes
36879905
url
https://files.example.com/objects/174/config-wJweWz.json
parentFolderId
128
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": 169,
      "ownerUserId": 218,
      "name": "report-5J9GHD.pdf",
      "mimeType": "application/pdf",
      "sizeBytes": 50243604,
      "url": "https://files.example.com/objects/169/report-5J9GHD.pdf",
      "parentFolderId": null,
      "isFolder": false,
      "createdAt": "2024-12-30T06:57:00.352Z",
      "updatedAt": "2025-03-30T23:06:16.677Z"
    },
    {
      "id": 170,
      "ownerUserId": 228,
      "name": "presentation-6STNDo.pptx",
      "mimeType": "application/vnd.ms-powerpoint",
      "sizeBytes": 39854156,
      "url": "https://files.example.com/objects/170/presentation-6STNDo.pptx",
      "parentFolderId": null,
      "isFolder": false,
      "createdAt": "2025-06-07T00:14:26.561Z",
      "updatedAt": "2025-07-28T03:38:54.378Z"
    },
    {
      "id": 171,
      "ownerUserId": 213,
      "name": "script-TikHcI.txt",
      "mimeType": "text/plain",
      "sizeBytes": 1268806,
      "url": "https://files.example.com/objects/171/script-TikHcI.txt",
      "parentFolderId": null,
      "isFolder": false,
      "createdAt": "2026-04-24T15:41:07.291Z",
      "updatedAt": "2026-05-13T06:21:44.182Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=8",
    "next": "/api/v1/files?page=9",
    "prev": "/api/v1/files?page=7"
  }
}
Draftbit