example-data.com
Menu
Browse docs and collections

Overview

videos / #190

Verus demens arbitro titulus auctus pax villa vociferor

Verus demens arbitro titulus auctus pax villa vociferor

Dedico contra caute. Ustilo ager denuncio suscipio ipsa tubineus cruentus odit aiunt verecundia. Anser appello tot cicuta complectus cado deludo tondeo cogo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 190,
  "userId": 14,
  "title": "Verus demens arbitro titulus auctus pax villa vociferor",
  "slug": "verus-demens-arbitro-titulus-auctus-pax-villa-vociferor-190",
  "description": "Dedico contra caute. Ustilo ager denuncio suscipio ipsa tubineus cruentus odit aiunt verecundia. Anser appello tot cicuta complectus cado deludo tondeo cogo.",
  "videoUrl": "https://example.com/videos/190.mp4",
  "thumbnailUrl": "https://picsum.photos/seed/video-190/1280/720",
  "durationSeconds": 1691,
  "viewCount": 4704704,
  "likeCount": 470362,
  "isPublic": true,
  "publishedAt": "2025-05-21T17:23:11.075Z",
  "createdAt": "2025-05-21T04:12:38.900Z"
}