example-data.com
Menu
Browse docs and collections

Overview

notifications / #900

Activity #900

User #104 system System notification

4/5/2026, 2:21:08 PM

Component variants

Medium
Small

User #104 system System notification · 4/5/2026, 2:21:08 PM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/notifications/900"
);
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/900"
);
const notification = (await res.json()) as Notification;

Python example

import requests

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

Response

{
  "id": 900,
  "userId": 104,
  "type": "system",
  "title": "System notification",
  "body": "Summopere suadeo quaerat vestrum conqueror arbor totam blandior cerno casso.",
  "isRead": false,
  "link": "https://example.com/system/d2uJ2Ucb",
  "createdAt": "2026-04-05T14:21:08.148Z"
}