video-WNcH1W.mp4
- ownerUserId
-
Otho Nikolaus @otho.nikolaus99
- name
- video-WNcH1W.mp4
- mimeType
- video/mp4
- sizeBytes
- 52366565
- url
- https://files.example.com/objects/411/video-WNcH1W.mp4
- parentFolderId
- files/107
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #411
video-WNcH1W.mp4
#411
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/411" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/411" ); 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/411"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/411"
)
file = res.json() Response
{
"id": 411,
"ownerUserId": 209,
"name": "video-WNcH1W.mp4",
"mimeType": "video/mp4",
"sizeBytes": 52366565,
"url": "https://files.example.com/objects/411/video-WNcH1W.mp4",
"parentFolderId": 107,
"isFolder": false,
"createdAt": "2026-03-11T04:30:18.441Z",
"updatedAt": "2026-03-13T21:13:59.838Z"
}