example-data.com
Menu
Browse docs and collections

Overview

videos / #174

Administratio bestia tabella cometes tantillus repellat

Administratio bestia tabella cometes tantillus repellat

Via celer conicio vesper stabilis subvenio patrocinor acidus. Terminatio corona inflammatio vulariter.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 174,
  "userId": 145,
  "title": "Administratio bestia tabella cometes tantillus repellat",
  "slug": "administratio-bestia-tabella-cometes-tantillus-repellat-174",
  "description": "Via celer conicio vesper stabilis subvenio patrocinor acidus. Terminatio corona inflammatio vulariter.",
  "videoUrl": "https://example.com/videos/174.mp4",
  "thumbnailUrl": "https://picsum.photos/seed/video-174/1280/720",
  "durationSeconds": 5720,
  "viewCount": 4021144,
  "likeCount": 334059,
  "isPublic": true,
  "publishedAt": "2025-07-27T22:52:09.825Z",
  "createdAt": "2025-07-27T03:11:24.049Z"
}