files / #170
- ownerUserId
- 228
- name
- presentation-6STNDo.pptx
- mimeType
- application/vnd.ms-powerpoint
- sizeBytes
- 39854156
- url
- https://files.example.com/objects/170/presentation-6STNDo.pptx
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Component variants
Small
files/170 curl -sS \
"https://example-data.com/api/v1/files/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/170"
);
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/170"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/170"
)
file = res.json() {
"id": 170,
"ownerUserId": 228,
"name": "presentation-6STNDo.pptx",
"mimeType": "application/vnd.ms-powerpoint",
"sizeBytes": 39854156,
"url": "https://files.example.com/objects/170/presentation-6STNDo.pptx",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2025-06-07T00:14:26.561Z",
"updatedAt": "2025-07-28T03:38:54.378Z"
}