Aqua varietas abundans attero earum benigne
Terror creo crudelis desolo voveo aestus acer iure sophismata tabella. Charisma crur solus valde tibi utrum utor adamo.
Overview
videos / #19
Terror creo crudelis desolo voveo aestus acer iure sophismata tabella. Charisma crur solus valde tibi utrum utor adamo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/19" ); 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/19"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/19"
)
video = res.json() Response
{
"id": 19,
"userId": 136,
"title": "Aqua varietas abundans attero earum benigne",
"slug": "aqua-varietas-abundans-attero-earum-benigne-19",
"description": "Terror creo crudelis desolo voveo aestus acer iure sophismata tabella. Charisma crur solus valde tibi utrum utor adamo.",
"videoUrl": "https://example.com/videos/19.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-19/1280/720",
"durationSeconds": 3598,
"viewCount": 3816899,
"likeCount": 373458,
"isPublic": true,
"publishedAt": "2024-07-23T20:33:08.798Z",
"createdAt": "2024-07-23T11:57:54.592Z"
}