Delinquo comes conspergo coruscus
Vox et ancilla coma vix. Sint deprimo vulpes aggredior tribuo corrupti nisi cerno. Curvo deleniti delego modi deserunt ars mollitia. Et cubo trepide ullam dolores allatus adsum tenax.
Overview
videos / #115
Vox et ancilla coma vix. Sint deprimo vulpes aggredior tribuo corrupti nisi cerno. Curvo deleniti delego modi deserunt ars mollitia. Et cubo trepide ullam dolores allatus adsum tenax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/videos/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/videos/115" ); 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/115"
);
const video = (await res.json()) as Video; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/videos/115"
)
video = res.json() Response
{
"id": 115,
"userId": 248,
"title": "Delinquo comes conspergo coruscus",
"slug": "delinquo-comes-conspergo-coruscus-115",
"description": "Vox et ancilla coma vix. Sint deprimo vulpes aggredior tribuo corrupti nisi cerno. Curvo deleniti delego modi deserunt ars mollitia. Et cubo trepide ullam dolores allatus adsum tenax.",
"videoUrl": "https://example.com/videos/115.mp4",
"thumbnailUrl": "https://picsum.photos/seed/video-115/1280/720",
"durationSeconds": 6384,
"viewCount": 3609946,
"likeCount": 73571,
"isPublic": true,
"publishedAt": "2024-05-10T12:39:52.311Z",
"createdAt": "2024-05-09T18:35:32.625Z"
}