Story #1
· 12/17/2025
stories / #1
Story #1
12/17/2025
curl -sS \
"https://example-data.com/api/v1/stories/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/1"
);
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/1"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/1"
)
storie = res.json() {
"id": 1,
"userId": 116,
"mediaUrl": "https://picsum.photos/seed/story-1/600/1200",
"mediaType": "image",
"caption": "",
"viewCount": 822,
"expiresAt": "2025-12-18T02:16:24.486Z",
"createdAt": "2025-12-17T02:16:24.486Z"
}