Subito tepesco inflammatio fugit crastinus.
· 11/17/2025
Overview
stories / #261
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/261" ); 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/261"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/261"
)
storie = res.json() Response
{
"id": 261,
"userId": 154,
"mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-261",
"mediaType": "video",
"caption": "Subito tepesco inflammatio fugit crastinus.",
"viewCount": 1231,
"expiresAt": "2025-11-18T04:54:53.864Z",
"createdAt": "2025-11-17T04:54:53.864Z"
}