Story #43
· 3/26/2026
stories / #43
Story #43
3/26/2026
curl -sS \
"https://example-data.com/api/v1/stories/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/43"
);
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/43"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/43"
)
storie = res.json() {
"id": 43,
"userId": 101,
"mediaUrl": "https://picsum.photos/seed/story-43/800/800",
"mediaType": "image",
"caption": "",
"viewCount": 3190,
"expiresAt": "2026-03-27T19:58:44.611Z",
"createdAt": "2026-03-26T19:58:44.611Z"
}