Est suus laborum anser possimus terebro expedita aetas
Sordeo trucido agnitio stella aeneus tardus thymbra stipes facilis excepturi. Congregatio angelus rem arcus depereo.
Overview
videos / #104
Sordeo trucido agnitio stella aeneus tardus thymbra stipes facilis excepturi. Congregatio angelus rem arcus depereo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/104" ); const video = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/videos.d.ts https://example-data.com/types/videos.d.ts
import type { Video } from "./types/videos";
const res = await fetch(
"https://example-data.com/api/v1/videos/104"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/104"
)
video = res.json() Response
{
"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"
}