files / #153
- ownerUserId
- 99
- name
- config-1Nc3lW.json
- mimeType
- application/json
- sizeBytes
- 3021320
- url
- https://files.example.com/objects/153/config-1Nc3lW.json
- parentFolderId
- 37
- isFolder
- false
- createdAt
- updatedAt
Component variants
Medium
config-1Nc3lW.json
#153
Small
files/153 curl -sS \
"https://example-data.com/api/v1/files/153" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/files/153"
);
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/153"
);
const file = (await res.json()) as File;import requests
res = requests.get(
"https://example-data.com/api/v1/files/153"
)
file = res.json() {
"id": 153,
"ownerUserId": 99,
"name": "config-1Nc3lW.json",
"mimeType": "application/json",
"sizeBytes": 3021320,
"url": "https://files.example.com/objects/153/config-1Nc3lW.json",
"parentFolderId": 37,
"isFolder": false,
"createdAt": "2025-01-02T23:25:36.835Z",
"updatedAt": "2025-06-27T21:16:39.076Z"
}