Inventore strues venia repudiandae suus.
· 2/13/2026
stories / #187
curl -sS \
"https://example-data.com/api/v1/stories/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/187"
);
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/187"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/187"
)
storie = res.json() {
"id": 187,
"userId": 234,
"mediaUrl": "https://picsum.photos/seed/story-187/800/800",
"mediaType": "image",
"caption": "Inventore strues venia repudiandae suus.",
"viewCount": 819,
"expiresAt": "2026-02-14T06:00:03.597Z",
"createdAt": "2026-02-13T06:00:03.597Z"
}