example-data.com
Menu
Browse docs and collections

Overview

notifications / #1125

Activity #1125

User #42 reply Lazaro Herzog replied to your comment

6/19/2025, 9:10:48 PM

Component variants

Medium
Small

User #42 reply Lazaro Herzog replied to your comment · 6/19/2025, 9:10:48 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1125,
  "userId": 42,
  "type": "reply",
  "title": "Lazaro Herzog replied to your comment",
  "body": "Sto solio benevolentia deputo totam solitudo appono debilito.",
  "isRead": true,
  "link": "https://example.com/reply/TPdtFj1j",
  "createdAt": "2025-06-19T21:10:48.821Z"
}