Iure texo tabella thesis vinculum amissio.
· 12/6/2025
Overview
stories / #202
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/202" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/202" ); 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/202"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/202"
)
storie = res.json() Response
{
"id": 202,
"userId": 201,
"mediaUrl": "https://picsum.photos/seed/story-202/800/800",
"mediaType": "image",
"caption": "Iure texo tabella thesis vinculum amissio.",
"viewCount": 4684,
"expiresAt": "2025-12-07T08:23:05.383Z",
"createdAt": "2025-12-06T08:23:05.383Z"
}