Charisma antepono magnam comptus sublime calco
Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.
videos / #168
Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.
curl -sS \
"https://example-data.com/api/v1/videos/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/168"
);
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/168"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/168"
)
video = res.json() {
"id": 168,
"userId": 198,
"title": "Charisma antepono magnam comptus sublime calco",
"slug": "charisma-antepono-magnam-comptus-sublime-calco-168",
"description": "Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.",
"videoUrl": "https://example.com/videos/168.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-168/1280/720",
"durationSeconds": 4753,
"viewCount": 2777998,
"likeCount": 48791,
"isPublic": false,
"publishedAt": "2024-12-12T01:17:38.643Z",
"createdAt": "2024-12-11T03:51:38.930Z"
}