Conitor cura crustulum conscendo tracto abbas addo
Confido benigne bene conor succedo. Atque sophismata tolero carbo tener aer demonstro tantum vel nihil.
videos / #163
Confido benigne bene conor succedo. Atque sophismata tolero carbo tener aer demonstro tantum vel nihil.
curl -sS \
"https://example-data.com/api/v1/videos/163" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/163"
);
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/163"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/163"
)
video = res.json() {
"id": 163,
"userId": 106,
"title": "Conitor cura crustulum conscendo tracto abbas addo",
"slug": "conitor-cura-crustulum-conscendo-tracto-abbas-addo-163",
"description": "Confido benigne bene conor succedo. Atque sophismata tolero carbo tener aer demonstro tantum vel nihil.",
"videoUrl": "https://example.com/videos/163.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-163/1280/720",
"durationSeconds": 5213,
"viewCount": 4813745,
"likeCount": 280539,
"isPublic": true,
"publishedAt": "2025-04-20T00:49:45.419Z",
"createdAt": "2025-04-19T21:57:20.475Z"
}