Est infit suggero tener sublime tergum placeat
Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.
Overview
videos / #167
Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/167" ); 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/167"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/167"
)
video = res.json() Response
{
"id": 167,
"userId": 170,
"title": "Est infit suggero tener sublime tergum placeat",
"slug": "est-infit-suggero-tener-sublime-tergum-placeat-167",
"description": "Caecus beatae suppellex facere solitudo adipisci. Asporto approbo volubilis trado vergo.",
"videoUrl": "https://example.com/videos/167.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-167/1280/720",
"durationSeconds": 525,
"viewCount": 1259318,
"likeCount": 113021,
"isPublic": true,
"publishedAt": "2025-01-06T22:26:27.370Z",
"createdAt": "2025-01-06T06:37:59.341Z"
}