files / #206
- ownerUserId
- 126
- name
- image-Qk4NMl.png
- mimeType
- image/png
- sizeBytes
- 32278651
- url
- https://files.example.com/objects/206/image-Qk4NMl.png
- parentFolderId
- 143
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
image-Qk4NMl.png
#206
Small
files/206 curl -sS \
"https://example-data.com/api/v1/files/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/206"
);
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/206"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/206"
)
file = res.json() {
"id": 206,
"ownerUserId": 126,
"name": "image-Qk4NMl.png",
"mimeType": "image/png",
"sizeBytes": 32278651,
"url": "https://files.example.com/objects/206/image-Qk4NMl.png",
"parentFolderId": 143,
"isFolder": false,
"createdAt": "2025-06-14T20:27:07.475Z",
"updatedAt": "2025-08-23T02:00:53.937Z"
}