Activity #318
User #150 reply Emilia Cummerata replied to your comment
1/24/2026, 11:22:13 PM
Overview
notifications / #318
User #150 reply Emilia Cummerata replied to your comment
1/24/2026, 11:22:13 PM
User #150 reply Emilia Cummerata replied to your comment
1/24/2026, 11:22:13 PM
View recordUser #150 reply Emilia Cummerata replied to your comment · 1/24/2026, 11:22:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/318" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/318" ); 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/318"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/318"
)
notification = res.json() Response
{
"id": 318,
"userId": 150,
"type": "reply",
"title": "Emilia Cummerata replied to your comment",
"body": "Aequus cursim vulgaris valeo tergeo maxime.",
"isRead": true,
"link": null,
"createdAt": "2026-01-24T23:22:13.337Z"
}