Story #82
· 11/12/2025
stories / #82
Story #82
11/12/2025
curl -sS \
"https://example-data.com/api/v1/stories/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/82"
);
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/82"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/82"
)
storie = res.json() {
"id": 82,
"userId": 106,
"mediaUrl": "https://picsum.photos/seed/story-82/400/1200",
"mediaType": "image",
"caption": "",
"viewCount": 3643,
"expiresAt": "2025-11-13T15:27:44.753Z",
"createdAt": "2025-11-12T15:27:44.753Z"
}