files / #224
- ownerUserId
- 56
- name
- presentation-OqSGHS.pptx
- mimeType
- application/vnd.ms-powerpoint
- sizeBytes
- 26173169
- url
- https://files.example.com/objects/224/presentation-OqSGHS.pptx
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Component variants
Small
files/224 curl -sS \
"https://example-data.com/api/v1/files/224" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/224"
);
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/224"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/224"
)
file = res.json() {
"id": 224,
"ownerUserId": 56,
"name": "presentation-OqSGHS.pptx",
"mimeType": "application/vnd.ms-powerpoint",
"sizeBytes": 26173169,
"url": "https://files.example.com/objects/224/presentation-OqSGHS.pptx",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2026-02-28T00:25:33.276Z",
"updatedAt": "2026-05-12T23:00:47.809Z"
}