example-data.com

stories / #53

Story #53

Story #53

· 5/9/2026

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/stories/53"
)
storie = res.json()
{
  "id": 53,
  "userId": 101,
  "mediaUrl": "https://picsum.photos/seed/story-53/600/1200",
  "mediaType": "image",
  "caption": "",
  "viewCount": 4143,
  "expiresAt": "2026-05-10T13:15:22.928Z",
  "createdAt": "2026-05-09T13:15:22.928Z"
}
Draftbit