example-data.com

stories / #132

Story #132

Story #132

· 5/13/2026

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/stories/132"
)
storie = res.json()
{
  "id": 132,
  "userId": 159,
  "mediaUrl": "https://picsum.photos/seed/story-132/800/1200",
  "mediaType": "image",
  "caption": "",
  "viewCount": 2603,
  "expiresAt": "2026-05-14T15:10:08.591Z",
  "createdAt": "2026-05-13T15:10:08.591Z"
}
Draftbit