Tracto sperno non temptatio balbus laudantium
Denego adulatio capto. Debilito vester vero sopor viduo.
Overview
videos / #59
Denego adulatio capto. Debilito vester vero sopor viduo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/59" ); const video = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/videos.d.ts https://example-data.com/types/videos.d.ts
import type { Video } from "./types/videos";
const res = await fetch(
"https://example-data.com/api/v1/videos/59"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/59"
)
video = res.json() Response
{
"id": 59,
"userId": 205,
"title": "Tracto sperno non temptatio balbus laudantium",
"slug": "tracto-sperno-non-temptatio-balbus-laudantium-59",
"description": "Denego adulatio capto. Debilito vester vero sopor viduo.",
"videoUrl": "https://example.com/videos/59.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-59/1280/720",
"durationSeconds": 635,
"viewCount": 2942412,
"likeCount": 266574,
"isPublic": true,
"publishedAt": "2026-04-26T12:09:50.906Z",
"createdAt": "2026-04-25T23:14:20.468Z"
}