example-data.com

files

files

Page 10 of 10.

ownerUserId
45
name
image-dCg4tS.png
mimeType
image/png
sizeBytes
49077307
url
https://files.example.com/objects/217/image-dCg4tS.png
parentFolderId
38
isFolder
false
createdAt
updatedAt
ownerUserId
183
name
document-rGKqgF.docx
mimeType
application/msword
sizeBytes
21863054
url
https://files.example.com/objects/218/document-rGKqgF.docx
parentFolderId
isFolder
false
createdAt
updatedAt
ownerUserId
84
name
archive-Xbz5bv.zip
mimeType
application/zip
sizeBytes
51248747
url
https://files.example.com/objects/219/archive-Xbz5bv.zip
parentFolderId
71
isFolder
false
createdAt
updatedAt
ownerUserId
76
name
archive-lEDjlK.zip
mimeType
application/zip
sizeBytes
34362831
url
https://files.example.com/objects/220/archive-lEDjlK.zip
parentFolderId
30
isFolder
false
createdAt
updatedAt
ownerUserId
197
name
report-sqUyif.pdf
mimeType
application/pdf
sizeBytes
14282752
url
https://files.example.com/objects/221/report-sqUyif.pdf
parentFolderId
31
isFolder
false
createdAt
updatedAt
ownerUserId
189
name
document-FVvq9Z.docx
mimeType
application/msword
sizeBytes
48880433
url
https://files.example.com/objects/222/document-FVvq9Z.docx
parentFolderId
90
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": 217,
      "ownerUserId": 45,
      "name": "image-dCg4tS.png",
      "mimeType": "image/png",
      "sizeBytes": 49077307,
      "url": "https://files.example.com/objects/217/image-dCg4tS.png",
      "parentFolderId": 38,
      "isFolder": false,
      "createdAt": "2025-02-18T20:32:11.497Z",
      "updatedAt": "2025-08-31T03:26:34.639Z"
    },
    {
      "id": 218,
      "ownerUserId": 183,
      "name": "document-rGKqgF.docx",
      "mimeType": "application/msword",
      "sizeBytes": 21863054,
      "url": "https://files.example.com/objects/218/document-rGKqgF.docx",
      "parentFolderId": null,
      "isFolder": false,
      "createdAt": "2025-01-07T18:23:39.718Z",
      "updatedAt": "2026-04-30T16:50:10.928Z"
    },
    {
      "id": 219,
      "ownerUserId": 84,
      "name": "archive-Xbz5bv.zip",
      "mimeType": "application/zip",
      "sizeBytes": 51248747,
      "url": "https://files.example.com/objects/219/archive-Xbz5bv.zip",
      "parentFolderId": 71,
      "isFolder": false,
      "createdAt": "2026-04-23T18:23:44.968Z",
      "updatedAt": "2026-05-07T23:51:10.305Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 600,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/files?page=10",
    "next": "/api/v1/files?page=11",
    "prev": "/api/v1/files?page=9"
  }
}
Draftbit