Delicate adiuvo tepesco tolero.
· 12/13/2025
Overview
stories / #268
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/268" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/268" ); 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/268"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/268"
)
storie = res.json() Response
{
"id": 268,
"userId": 42,
"mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-268",
"mediaType": "video",
"caption": "Delicate adiuvo tepesco tolero.",
"viewCount": 3332,
"expiresAt": "2025-12-14T04:19:58.100Z",
"createdAt": "2025-12-13T04:19:58.100Z"
}