example-data.com
Menu
Browse docs and collections

Overview

notifications / #123

Activity #123

User #159 reply Jonas Rath replied to your comment

10/5/2025, 2:53:12 PM

Component variants

Medium
Small

User #159 reply Jonas Rath replied to your comment · 10/5/2025, 2:53:12 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 123,
  "userId": 159,
  "type": "reply",
  "title": "Jonas Rath replied to your comment",
  "body": "Bardus complectus antepono sol harum agnosco utor acies cumque nulla.",
  "isRead": false,
  "link": null,
  "createdAt": "2025-10-05T14:53:12.124Z"
}