video-lICJT9.mp4
- ownerUserId
-
Einar Volkman @einar_volkman69
- name
- video-lICJT9.mp4
- mimeType
- video/mp4
- sizeBytes
- 13439123
- url
- https://files.example.com/objects/476/video-lICJT9.mp4
- parentFolderId
- files/141
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #476
video-lICJT9.mp4
#476
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/476" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/476" ); const file = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/files.d.ts https://example-data.com/types/files.d.ts
import type { File } from "./types/files";
const res = await fetch(
"https://example-data.com/api/v1/files/476"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/476"
)
file = res.json() Response
{
"id": 476,
"ownerUserId": 7,
"name": "video-lICJT9.mp4",
"mimeType": "video/mp4",
"sizeBytes": 13439123,
"url": "https://files.example.com/objects/476/video-lICJT9.mp4",
"parentFolderId": 141,
"isFolder": false,
"createdAt": "2025-08-21T15:34:18.198Z",
"updatedAt": "2025-10-19T15:07:55.810Z"
}