example-data.com

stories / #174

Voluntarius labore at.

Voluntarius labore at.

· 9/15/2025

Component variants

Related

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

const res = await fetch(
  "https://example-data.com/api/v1/stories/174"
);
const storie = (await res.json()) as Storie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stories/174"
)
storie = res.json()
{
  "id": 174,
  "userId": 56,
  "mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-174",
  "mediaType": "video",
  "caption": "Voluntarius labore at.",
  "viewCount": 67,
  "expiresAt": "2025-09-16T08:50:30.096Z",
  "createdAt": "2025-09-15T08:50:30.096Z"
}
Draftbit