files / #213
- ownerUserId
- 169
- name
- document-UgqRnr.docx
- mimeType
- application/msword
- sizeBytes
- 42539478
- url
- https://files.example.com/objects/213/document-UgqRnr.docx
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
document-UgqRnr.docx
#213
Small
files/213 curl -sS \
"https://example-data.com/api/v1/files/213" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/213"
);
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/213"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/213"
)
file = res.json() {
"id": 213,
"ownerUserId": 169,
"name": "document-UgqRnr.docx",
"mimeType": "application/msword",
"sizeBytes": 42539478,
"url": "https://files.example.com/objects/213/document-UgqRnr.docx",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2026-01-27T16:08:16.686Z",
"updatedAt": "2026-03-18T06:38:57.861Z"
}