files / #172
- ownerUserId
- 127
- name
- archive-wyVBoW.zip
- mimeType
- application/zip
- sizeBytes
- 20435647
- url
- https://files.example.com/objects/172/archive-wyVBoW.zip
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
archive-wyVBoW.zip
#172
Small
files/172 curl -sS \
"https://example-data.com/api/v1/files/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/172"
);
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/172"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/172"
)
file = res.json() {
"id": 172,
"ownerUserId": 127,
"name": "archive-wyVBoW.zip",
"mimeType": "application/zip",
"sizeBytes": 20435647,
"url": "https://files.example.com/objects/172/archive-wyVBoW.zip",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2024-09-16T20:11:07.273Z",
"updatedAt": "2026-02-20T12:40:16.409Z"
}