Depopulo textilis patrocinor copia ara cavus cunae curatio
Deripio caput decumbo thermae ciminatio voluptatem sodalitas strues tenax. Labore censura perspiciatis derideo amitto.
Overview
videos / #125
Deripio caput decumbo thermae ciminatio voluptatem sodalitas strues tenax. Labore censura perspiciatis derideo amitto.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/125" ); 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/125"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/125"
)
video = res.json() Response
{
"id": 125,
"userId": 235,
"title": "Depopulo textilis patrocinor copia ara cavus cunae curatio",
"slug": "depopulo-textilis-patrocinor-copia-ara-cavus-cunae-curatio-125",
"description": "Deripio caput decumbo thermae ciminatio voluptatem sodalitas strues tenax. Labore censura perspiciatis derideo amitto.",
"videoUrl": "https://example.com/videos/125.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-125/1280/720",
"durationSeconds": 450,
"viewCount": 3305899,
"likeCount": 49310,
"isPublic": false,
"publishedAt": "2024-04-25T16:30:51.225Z",
"createdAt": "2024-04-24T18:13:39.570Z"
}