Story #239
· 7/31/2025
stories / #239
Story #239
7/31/2025
curl -sS \
"https://example-data.com/api/v1/stories/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stories/239"
);
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/239"
);
const storie = (await res.json()) as Storie;import requests
res = requests.get(
"https://example-data.com/api/v1/stories/239"
)
storie = res.json() {
"id": 239,
"userId": 53,
"mediaUrl": "https://picsum.photos/seed/story-239/600/600",
"mediaType": "image",
"caption": "",
"viewCount": 920,
"expiresAt": "2025-08-01T09:31:26.486Z",
"createdAt": "2025-07-31T09:31:26.486Z"
}