Activity #1675
User #28 reply Leonel Hamill replied to your comment
11/24/2025, 6:52:38 PM
Overview
notifications / #1675
User #28 reply Leonel Hamill replied to your comment
11/24/2025, 6:52:38 PM
User #28 reply Leonel Hamill replied to your comment
11/24/2025, 6:52:38 PM
View recordUser #28 reply Leonel Hamill replied to your comment · 11/24/2025, 6:52:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1675" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1675" ); 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/1675"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1675"
)
notification = res.json() Response
{
"id": 1675,
"userId": 28,
"type": "reply",
"title": "Leonel Hamill replied to your comment",
"body": "Basium utrum dicta armarium ciminatio aperte sint colo eos quibusdam.",
"isRead": true,
"link": null,
"createdAt": "2025-11-24T18:52:38.659Z"
}