Est infit suggero tener sublime tergum placeat
Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.
videos / #167
Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.
curl -sS \
"https://example-data.com/api/v1/videos/167" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/videos/167"
);
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/167"
);
const video = (await res.json()) as Video;import requests
res = requests.get(
"https://example-data.com/api/v1/videos/167"
)
video = res.json() {
"id": 167,
"userId": 170,
"title": "Est infit suggero tener sublime tergum placeat",
"slug": "est-infit-suggero-tener-sublime-tergum-placeat-167",
"description": "Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.",
"videoUrl": "https://example.com/videos/167.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-167/1280/720",
"durationSeconds": 525,
"viewCount": 1259318,
"likeCount": 113021,
"isPublic": true,
"publishedAt": "2025-01-06T22:26:27.370Z",
"createdAt": "2025-01-06T06:37:59.341Z"
}