example-data.com

files / #177

ownerUserId
193
name
report-4UlMq4.pdf
mimeType
application/pdf
sizeBytes
9305332
url
https://files.example.com/objects/177/report-4UlMq4.pdf
parentFolderId
1
isFolder
false
createdAt
updatedAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/files/177"
)
file = res.json()
{
  "id": 177,
  "ownerUserId": 193,
  "name": "report-4UlMq4.pdf",
  "mimeType": "application/pdf",
  "sizeBytes": 9305332,
  "url": "https://files.example.com/objects/177/report-4UlMq4.pdf",
  "parentFolderId": 1,
  "isFolder": false,
  "createdAt": "2026-01-22T12:38:32.404Z",
  "updatedAt": "2026-03-17T00:58:30.983Z"
}
Draftbit