Vulnus minima deporto trucido
Vulgus sint viduo odit bene vehemens at modi. Amoveo apto adhaero cogo cognomen commemoro.
Overview
videos / #180
Vulgus sint viduo odit bene vehemens at modi. Amoveo apto adhaero cogo cognomen commemoro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/180" ); 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/180"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/180"
)
video = res.json() Response
{
"id": 180,
"userId": 218,
"title": "Vulnus minima deporto trucido",
"slug": "vulnus-minima-deporto-trucido-180",
"description": "Vulgus sint viduo odit bene vehemens at modi. Amoveo apto adhaero cogo cognomen commemoro.",
"videoUrl": "https://example.com/videos/180.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-180/1280/720",
"durationSeconds": 3176,
"viewCount": 103906,
"likeCount": 1135,
"isPublic": true,
"publishedAt": "2023-07-22T07:49:47.387Z",
"createdAt": "2023-07-21T18:45:47.809Z"
}