Story #190
· 11/18/2025
stories / #190
Story #190
11/18/2025
curl -sS \
"https://example-data.com/api/v1/stories/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/190"
);
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/190"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/190"
)
storie = res.json() {
"id": 190,
"userId": 57,
"mediaUrl": "https://picsum.photos/seed/story-190/800/1200",
"mediaType": "image",
"caption": "",
"viewCount": 1638,
"expiresAt": "2025-11-19T23:38:50.315Z",
"createdAt": "2025-11-18T23:38:50.315Z"
}