Aperte tandem architecto nulla sumo cohibeo usitas absconditus tabgo tabgo.
· 9/1/2025
Overview
stories / #278
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stories/278" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stories/278" ); 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/278"
);
const story = (await res.json()) as Story; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stories/278"
)
storie = res.json() Response
{
"id": 278,
"userId": 42,
"mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-278",
"mediaType": "video",
"caption": "Aperte tandem architecto nulla sumo cohibeo usitas absconditus tabgo tabgo.",
"viewCount": 3397,
"expiresAt": "2025-09-02T06:02:48.983Z",
"createdAt": "2025-09-01T06:02:48.983Z"
}