Tracto sperno non temptatio balbus laudantium
Denego adulatio capto. Debilito vester vero sopor viduo.
videos / #59
Denego adulatio capto. Debilito vester vero sopor viduo.
curl -sS \
"https://example-data.com/api/v1/videos/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/59"
);
const video = await res.json();import type { Video } from "https://example-data.com/types/videos.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/videos/59"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/59"
)
video = res.json() {
"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"
}