files / #198
- ownerUserId
- 78
- name
- config-JsNddm.json
- mimeType
- application/json
- sizeBytes
- 32964609
- url
- https://files.example.com/objects/198/config-JsNddm.json
- parentFolderId
- 6
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
config-JsNddm.json
#198
Small
files/198 curl -sS \
"https://example-data.com/api/v1/files/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/198"
);
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/198"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/198"
)
file = res.json() {
"id": 198,
"ownerUserId": 78,
"name": "config-JsNddm.json",
"mimeType": "application/json",
"sizeBytes": 32964609,
"url": "https://files.example.com/objects/198/config-JsNddm.json",
"parentFolderId": 6,
"isFolder": false,
"createdAt": "2025-05-01T05:34:43.961Z",
"updatedAt": "2026-05-09T20:46:19.897Z"
}