Itaque asperiores cauda cuius tum.
· 11/19/2025
Overview
stories / #197
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/197" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/197" ); 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/197"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/197"
)
storie = res.json() Response
{
"id": 197,
"userId": 133,
"mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-197",
"mediaType": "video",
"caption": "Itaque asperiores cauda cuius tum.",
"viewCount": 2235,
"expiresAt": "2025-11-20T09:06:53.780Z",
"createdAt": "2025-11-19T09:06:53.780Z"
}