Voveo quos thesis qui tolero tamen tyrannus conitor suppellex suppellex.
· 12/2/2025
Overview
stories / #231
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/231" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/231" ); 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/231"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/231"
)
storie = res.json() Response
{
"id": 231,
"userId": 140,
"mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-231",
"mediaType": "video",
"caption": "Voveo quos thesis qui tolero tamen tyrannus conitor suppellex suppellex.",
"viewCount": 1688,
"expiresAt": "2025-12-03T18:46:51.027Z",
"createdAt": "2025-12-02T18:46:51.027Z"
}