Est suus laborum anser possimus terebro expedita aetas
Sordeo trucido agnitio stella aeneus tardus thymbra stipes facilis excepturi. Congregatio angelus rem arcus depereo.
videos / #104
Sordeo trucido agnitio stella aeneus tardus thymbra stipes facilis excepturi. Congregatio angelus rem arcus depereo.
curl -sS \
"https://example-data.com/api/v1/videos/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/104"
);
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/104"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/104"
)
video = res.json() {
"id": 104,
"userId": 33,
"title": "Est suus laborum anser possimus terebro expedita aetas",
"slug": "est-suus-laborum-anser-possimus-terebro-expedita-aetas-104",
"description": "Sordeo trucido agnitio stella aeneus tardus thymbra stipes facilis excepturi. Congregatio angelus rem arcus depereo.",
"videoUrl": "https://example.com/videos/104.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-104/1280/720",
"durationSeconds": 2040,
"viewCount": 3776823,
"likeCount": 337798,
"isPublic": true,
"publishedAt": "2024-06-15T12:45:50.252Z",
"createdAt": "2024-06-15T04:52:24.979Z"
}