Conitor cura crustulum conscendo tracto abbas addo
Confido benigne bene conor succedo. Atque sophismata tolero carbo tener aer demonstro tantum vel nihil.
Overview
videos / #163
Confido benigne bene conor succedo. Atque sophismata tolero carbo tener aer demonstro tantum vel nihil.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/163" ); 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/163"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/163"
)
video = res.json() Response
{
"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"
}