example-data.com

stories / #63

Story #63

Story #63

· 7/30/2025

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/stories/63"
)
storie = res.json()
{
  "id": 63,
  "userId": 160,
  "mediaUrl": "https://picsum.photos/seed/story-63/600/1200",
  "mediaType": "image",
  "caption": "",
  "viewCount": 4761,
  "expiresAt": "2025-07-31T23:12:32.466Z",
  "createdAt": "2025-07-30T23:12:32.466Z"
}
Draftbit