example-data.com
Menu
Browse docs and collections

Overview

notifications / #830

Activity #830

User #176 system System notification

1/7/2026, 3:25:45 PM

Component variants

Medium
Small

User #176 system System notification · 1/7/2026, 3:25:45 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 830,
  "userId": 176,
  "type": "system",
  "title": "System notification",
  "body": "Synagoga aetas beatae.",
  "isRead": false,
  "link": "https://example.com/system/0T0x5vtf",
  "createdAt": "2026-01-07T15:25:45.857Z"
}