example-data.com

stories / #193

Story #193

Story #193

· 1/11/2026

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/stories/193" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stories/193"
);
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/193"
);
const storie = (await res.json()) as Storie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stories/193"
)
storie = res.json()
{
  "id": 193,
  "userId": 185,
  "mediaUrl": "https://picsum.photos/seed/story-193/600/600",
  "mediaType": "image",
  "caption": "",
  "viewCount": 1744,
  "expiresAt": "2026-01-12T04:25:46.375Z",
  "createdAt": "2026-01-11T04:25:46.375Z"
}
Draftbit