Story #129
· 4/18/2026
stories / #129
Story #129
4/18/2026
curl -sS \
"https://example-data.com/api/v1/stories/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/129"
);
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/129"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/129"
)
storie = res.json() {
"id": 129,
"userId": 140,
"mediaUrl": "https://picsum.photos/seed/story-129/600/800",
"mediaType": "image",
"caption": "",
"viewCount": 1740,
"expiresAt": "2026-04-19T10:53:22.218Z",
"createdAt": "2026-04-18T10:53:22.218Z"
}