Story #83
· 9/28/2025
stories / #83
Story #83
9/28/2025
curl -sS \
"https://example-data.com/api/v1/stories/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/83"
);
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/83"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/83"
)
storie = res.json() {
"id": 83,
"userId": 201,
"mediaUrl": "https://picsum.photos/seed/story-83/600/600",
"mediaType": "image",
"caption": "",
"viewCount": 1733,
"expiresAt": "2025-09-29T00:08:33.924Z",
"createdAt": "2025-09-28T00:08:33.924Z"
}