example-data.com
Menu
Browse docs and collections

Overview

videos / #39

Velut credo demum color caput ars

Velut credo demum color caput ars

Adopto stillicidium thema statim curia asporto. Verbera caute altus appello abeo. Perspiciatis acervus ubi curto celebrer non pax adeptio.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/videos/39" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/videos/39"
);
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/39"
);
const video = (await res.json()) as Video;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/videos/39"
)
video = res.json()

Response

{
  "id": 39,
  "userId": 141,
  "title": "Velut credo demum color caput ars",
  "slug": "velut-credo-demum-color-caput-ars-39",
  "description": "Adopto stillicidium thema statim curia asporto. Verbera caute altus appello abeo. Perspiciatis acervus ubi curto celebrer non pax adeptio.",
  "videoUrl": "https://example.com/videos/39.mp4",
  "thumbnailUrl": "https://picsum.photos/seed/video-39/1280/720",
  "durationSeconds": 6305,
  "viewCount": 1495034,
  "likeCount": 116731,
  "isPublic": true,
  "publishedAt": "2026-04-01T01:08:19.475Z",
  "createdAt": "2026-03-31T11:42:10.072Z"
}