Tondeo curiositas studio magni asporto
Thema beatae voco tribuo taceo vel aeneus labore conqueror. Denique incidunt repellat.
videos / #121
Thema beatae voco tribuo taceo vel aeneus labore conqueror. Denique incidunt repellat.
curl -sS \
"https://example-data.com/api/v1/videos/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/121"
);
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/121"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/121"
)
video = res.json() {
"id": 121,
"userId": 1,
"title": "Tondeo curiositas studio magni asporto",
"slug": "tondeo-curiositas-studio-magni-asporto-121",
"description": "Thema beatae voco tribuo taceo vel aeneus labore conqueror. Denique incidunt repellat.",
"videoUrl": "https://example.com/videos/121.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-121/1280/720",
"durationSeconds": 6062,
"viewCount": 3639483,
"likeCount": 213867,
"isPublic": true,
"publishedAt": "2026-05-12T11:09:08.245Z",
"createdAt": "2026-05-11T11:34:09.338Z"
}