Timor tepesco terga assentator depraedor.
· 11/17/2025
Overview
stories / #185
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/185" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/185" ); 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/185"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/185"
)
storie = res.json() Response
{
"id": 185,
"userId": 49,
"mediaUrl": "https://picsum.photos/seed/story-185/600/600",
"mediaType": "image",
"caption": "Timor tepesco terga assentator depraedor.",
"viewCount": 2165,
"expiresAt": "2025-11-18T00:54:35.202Z",
"createdAt": "2025-11-17T00:54:35.202Z"
}