Story #29
· 11/14/2025
stories / #29
Story #29
11/14/2025
curl -sS \
"https://example-data.com/api/v1/stories/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/29"
);
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/29"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/29"
)
storie = res.json() {
"id": 29,
"userId": 3,
"mediaUrl": "https://picsum.photos/seed/story-29/600/600",
"mediaType": "image",
"caption": "",
"viewCount": 1195,
"expiresAt": "2025-11-15T09:06:34.304Z",
"createdAt": "2025-11-14T09:06:34.304Z"
}