Story #175
· 2/17/2026
stories / #175
Story #175
2/17/2026
curl -sS \
"https://example-data.com/api/v1/stories/175" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/175"
);
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/175"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/175"
)
storie = res.json() {
"id": 175,
"userId": 92,
"mediaUrl": "https://picsum.photos/seed/story-175/400/600",
"mediaType": "image",
"caption": "",
"viewCount": 3357,
"expiresAt": "2026-02-18T23:55:24.726Z",
"createdAt": "2026-02-17T23:55:24.726Z"
}