Inventore strues venia repudiandae suus.
· 2/13/2026
Overview
stories / #187
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/187" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/187" ); const story = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stories.d.ts https://example-data.com/types/stories.d.ts
import type { Story } from "./types/stories";
const res = await fetch(
"https://example-data.com/api/v1/stories/187"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/187"
)
storie = res.json() Response
{
"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"
}