example-data.com

videos / #173

Reprehenderit totus ullam stella sint terror usque

Reprehenderit totus ullam stella sint terror usque

Aliqua pecto cogo solio arbitro. Vindico tibi eum pectus capio aiunt denuncio.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/videos/173" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/videos/173"
);
const video = await res.json();
import type { Video } from "https://example-data.com/types/videos.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/videos/173"
);
const video = (await res.json()) as Video;
import requests

res = requests.get(
    "https://example-data.com/api/v1/videos/173"
)
video = res.json()
{
  "id": 173,
  "userId": 199,
  "title": "Reprehenderit totus ullam stella sint terror usque",
  "slug": "reprehenderit-totus-ullam-stella-sint-terror-usque-173",
  "description": "Aliqua pecto cogo solio arbitro. Vindico tibi eum pectus capio aiunt denuncio.",
  "videoUrl": "https://example.com/videos/173.mp4",
  "thumbnailUrl": "https://picsum.photos/seed/video-173/1280/720",
  "durationSeconds": 5025,
  "viewCount": 2860895,
  "likeCount": 56408,
  "isPublic": true,
  "publishedAt": "2024-03-21T23:10:18.104Z",
  "createdAt": "2024-03-21T06:58:43.843Z"
}
Draftbit