example-data.com
Menu
Browse docs and collections

Overview

notifications / #300

Activity #300

User #240 mention Einar Volkman mentioned you in a post

10/30/2025, 2:45:50 PM

Component variants

Medium
Small

User #240 mention Einar Volkman mentioned you in a post · 10/30/2025, 2:45:50 PM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/notifications/300"
);
const notification = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification } from "./types/notifications";

const res = await fetch(
  "https://example-data.com/api/v1/notifications/300"
);
const notification = (await res.json()) as Notification;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/notifications/300"
)
notification = res.json()

Response

{
  "id": 300,
  "userId": 240,
  "type": "mention",
  "title": "Einar Volkman mentioned you in a post",
  "body": "Cilicium circumvenio accusator.",
  "isRead": true,
  "link": "https://example.com/mention/GqeYMdT_",
  "createdAt": "2025-10-30T14:45:50.229Z"
}