Charisma antepono magnam comptus sublime calco
Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.
Overview
videos / #168
Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/168" ); 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/168"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/168"
)
video = res.json() Response
{
"id": 168,
"userId": 198,
"title": "Charisma antepono magnam comptus sublime calco",
"slug": "charisma-antepono-magnam-comptus-sublime-calco-168",
"description": "Surgo tempora vindico sponte solus calcar careo. Traho adstringo deserunt tot decens usus atrocitas. In adsum solum torrens abutor.",
"videoUrl": "https://example.com/videos/168.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-168/1280/720",
"durationSeconds": 4753,
"viewCount": 2777998,
"likeCount": 48791,
"isPublic": false,
"publishedAt": "2024-12-12T01:17:38.643Z",
"createdAt": "2024-12-11T03:51:38.930Z"
}