Autem amitto aggero apto creo arto.
· 1/28/2026
stories / #74
curl -sS \
"https://example-data.com/api/v1/stories/74" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/74"
);
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/74"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/74"
)
storie = res.json() {
"id": 74,
"userId": 62,
"mediaUrl": "https://picsum.photos/seed/story-74/400/800",
"mediaType": "image",
"caption": "Autem amitto aggero apto creo arto.",
"viewCount": 2878,
"expiresAt": "2026-01-29T19:42:05.200Z",
"createdAt": "2026-01-28T19:42:05.200Z"
}