files / #180
- ownerUserId
- 2
- name
- photo-drkZ6t.jpg
- mimeType
- image/jpeg
- sizeBytes
- 21784421
- url
- https://files.example.com/objects/180/photo-drkZ6t.jpg
- parentFolderId
- 131
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
photo-drkZ6t.jpg
#180
Small
files/180 curl -sS \
"https://example-data.com/api/v1/files/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/180"
);
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/180"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/180"
)
file = res.json() {
"id": 180,
"ownerUserId": 2,
"name": "photo-drkZ6t.jpg",
"mimeType": "image/jpeg",
"sizeBytes": 21784421,
"url": "https://files.example.com/objects/180/photo-drkZ6t.jpg",
"parentFolderId": 131,
"isFolder": false,
"createdAt": "2026-04-21T23:28:28.770Z",
"updatedAt": "2026-05-04T00:22:39.646Z"
}