Activity #1454
User #41 reply Maximus Bosco replied to your comment
5/8/2026, 11:16:18 AM
Overview
notifications / #1454
User #41 reply Maximus Bosco replied to your comment
5/8/2026, 11:16:18 AM
User #41 reply Maximus Bosco replied to your comment
5/8/2026, 11:16:18 AM
View recordUser #41 reply Maximus Bosco replied to your comment · 5/8/2026, 11:16:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1454" ); 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/1454"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1454"
)
notification = res.json() Response
{
"id": 1454,
"userId": 41,
"type": "reply",
"title": "Maximus Bosco replied to your comment",
"body": "Valde bonus carmen peior.",
"isRead": false,
"link": null,
"createdAt": "2026-05-08T11:16:18.418Z"
}