example-data.com

files / #212

ownerUserId
5
name
report-GodEHm.pdf
mimeType
application/pdf
sizeBytes
50186339
url
https://files.example.com/objects/212/report-GodEHm.pdf
parentFolderId
isFolder
false
createdAt
updatedAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/files/212" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/files/212"
);
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/212"
);
const file = (await res.json()) as File;
import requests

res = requests.get(
    "https://example-data.com/api/v1/files/212"
)
file = res.json()
{
  "id": 212,
  "ownerUserId": 5,
  "name": "report-GodEHm.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 50186339,
  "url": "https://files.example.com/objects/212/report-GodEHm.pdf",
  "parentFolderId": null,
  "isFolder": false,
  "createdAt": "2026-05-18T07:40:57.904Z",
  "updatedAt": "2026-05-20T16:14:48.647Z"
}
Draftbit