example-data.com

files / #221

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

Component variants

curl -sS \
  "https://example-data.com/api/v1/files/221" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/files/221"
);
const file = await res.json();
import type { File } from "https://example-data.com/types/files.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/files/221"
);
const file = (await res.json()) as File;
import requests

res = requests.get(
    "https://example-data.com/api/v1/files/221"
)
file = res.json()
{
  "id": 221,
  "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": "2025-12-15T10:25:16.024Z",
  "updatedAt": "2026-04-07T22:48:02.068Z"
}
Draftbit