files / #203
- ownerUserId
- 165
- name
- spreadsheet-3Dz4gr.xlsx
- mimeType
- application/vnd.ms-excel
- sizeBytes
- 51620459
- url
- https://files.example.com/objects/203/spreadsheet-3Dz4gr.xlsx
- parentFolderId
- 138
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
spreadsheet-3Dz4gr.xlsx
#203
Small
files/203 curl -sS \
"https://example-data.com/api/v1/files/203" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/203"
);
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/203"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/203"
)
file = res.json() {
"id": 203,
"ownerUserId": 165,
"name": "spreadsheet-3Dz4gr.xlsx",
"mimeType": "application/vnd.ms-excel",
"sizeBytes": 51620459,
"url": "https://files.example.com/objects/203/spreadsheet-3Dz4gr.xlsx",
"parentFolderId": 138,
"isFolder": false,
"createdAt": "2025-04-16T00:46:24.128Z",
"updatedAt": "2025-10-10T06:01:25.083Z"
}