Story #227
· 11/22/2025
stories / #227
Story #227
11/22/2025
curl -sS \
"https://example-data.com/api/v1/stories/227" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/227"
);
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/227"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/227"
)
storie = res.json() {
"id": 227,
"userId": 73,
"mediaUrl": "https://picsum.photos/seed/story-227/600/800",
"mediaType": "image",
"caption": "",
"viewCount": 1242,
"expiresAt": "2025-11-23T22:58:40.715Z",
"createdAt": "2025-11-22T22:58:40.715Z"
}