example-data.com
Menu
Browse docs and collections

Overview

stories / #199

Tunc aperio vel apud coadunatio ustulo.

Tunc aperio vel apud coadunatio ustulo.

· 9/8/2025

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stories/199" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stories/199"
);
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/199"
);
const story = (await res.json()) as Story;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stories/199"
)
storie = res.json()

Response

{
  "id": 199,
  "userId": 216,
  "mediaUrl": "https://api.dicebear.com/9.x/shapes/svg?seed=story-video-199",
  "mediaType": "video",
  "caption": "Tunc aperio vel apud coadunatio ustulo.",
  "viewCount": 3343,
  "expiresAt": "2025-09-09T08:10:50.948Z",
  "createdAt": "2025-09-08T08:10:50.948Z"
}