video-mVRTtn.mp4
- ownerUserId
-
Gerald Lind @gerald_lind57
- name
- video-mVRTtn.mp4
- mimeType
- video/mp4
- sizeBytes
- 51056687
- url
- https://files.example.com/objects/280/video-mVRTtn.mp4
- parentFolderId
- files/96
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #280
video-mVRTtn.mp4
#280
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/280" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/280" ); 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/280"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/280"
)
file = res.json() Response
{
"id": 280,
"ownerUserId": 179,
"name": "video-mVRTtn.mp4",
"mimeType": "video/mp4",
"sizeBytes": 51056687,
"url": "https://files.example.com/objects/280/video-mVRTtn.mp4",
"parentFolderId": 96,
"isFolder": false,
"createdAt": "2025-12-10T11:20:28.180Z",
"updatedAt": "2026-02-16T18:49:49.652Z"
}