video-Ou4dC6.mp4
- ownerUserId
-
Norbert Jacobi @norbert_jacobi92
- name
- video-Ou4dC6.mp4
- mimeType
- video/mp4
- sizeBytes
- 3562563
- url
- https://files.example.com/objects/388/video-Ou4dC6.mp4
- parentFolderId
- —
- isFolder
- false
- createdAt
- updatedAt
Overview
files / #388
video-Ou4dC6.mp4
#388
Request
curl example
curl -sS \ "https://example-data.com/api/v1/files/388" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/files/388" ); 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/388"
);
const file = (await res.json()) as File; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/files/388"
)
file = res.json() Response
{
"id": 388,
"ownerUserId": 101,
"name": "video-Ou4dC6.mp4",
"mimeType": "video/mp4",
"sizeBytes": 3562563,
"url": "https://files.example.com/objects/388/video-Ou4dC6.mp4",
"parentFolderId": null,
"isFolder": false,
"createdAt": "2024-10-04T18:31:51.335Z",
"updatedAt": "2025-04-20T15:03:12.551Z"
}