example-data.com
Menu
Browse docs and collections

Overview

notifications / #1919

Activity #1919

User #54 reply Lazaro Herzog replied to your comment

12/26/2025, 6:32:37 AM

Component variants

Medium
Small

User #54 reply Lazaro Herzog replied to your comment · 12/26/2025, 6:32:37 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1919,
  "userId": 54,
  "type": "reply",
  "title": "Lazaro Herzog replied to your comment",
  "body": "Auctor abundans creber adipiscor sum civis votum conservo benigne.",
  "isRead": true,
  "link": "https://example.com/reply/9c8Jo6VC",
  "createdAt": "2025-12-26T06:32:37.013Z"
}