example-data.com
Menu
Browse docs and collections

Overview

stories / #280

Vix tactus cura deleniti voluptates.

Vix tactus cura deleniti voluptates.

· 3/23/2026

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 280,
  "userId": 132,
  "mediaUrl": "https://picsum.photos/seed/story-280/600/600",
  "mediaType": "image",
  "caption": "Vix tactus cura deleniti voluptates.",
  "viewCount": 4292,
  "expiresAt": "2026-03-24T01:04:57.308Z",
  "createdAt": "2026-03-23T01:04:57.308Z"
}