example-data.com
Menu
Browse docs and collections

Overview

notifications / #1057

Activity #1057

User #237 system System notification

11/23/2025, 1:41:26 PM

Component variants

Medium
Small

User #237 system System notification · 11/23/2025, 1:41:26 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1057,
  "userId": 237,
  "type": "system",
  "title": "System notification",
  "body": "Textilis sustineo delinquo numquam strenuus denique accedo comis torqueo.",
  "isRead": true,
  "link": "https://example.com/system/Sfo6qZmf",
  "createdAt": "2025-11-23T13:41:26.940Z"
}