Denuncio absorbeo amplexus comes
Sublime quis defessus. Catena carcer cibo coma subvenio. At utpote qui.
Overview
videos / #11
Sublime quis defessus. Catena carcer cibo coma subvenio. At utpote qui.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/11" ); 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/11"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/11"
)
video = res.json() Response
{
"id": 11,
"userId": 149,
"title": "Denuncio absorbeo amplexus comes",
"slug": "denuncio-absorbeo-amplexus-comes-11",
"description": "Sublime quis defessus. Catena carcer cibo coma subvenio. At utpote qui.",
"videoUrl": "https://example.com/videos/11.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-11/1280/720",
"durationSeconds": 6825,
"viewCount": 1286483,
"likeCount": 7401,
"isPublic": true,
"publishedAt": "2025-08-08T04:49:01.293Z",
"createdAt": "2025-08-07T11:38:46.828Z"
}