Activity #1177
User #237 reply Orrin Grant replied to your comment
1/18/2026, 3:50:11 PM
Overview
notifications / #1177
User #237 reply Orrin Grant replied to your comment
1/18/2026, 3:50:11 PM
User #237 reply Orrin Grant replied to your comment
1/18/2026, 3:50:11 PM
View recordUser #237 reply Orrin Grant replied to your comment · 1/18/2026, 3:50:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1177" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1177" ); 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/1177"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1177"
)
notification = res.json() Response
{
"id": 1177,
"userId": 237,
"type": "reply",
"title": "Orrin Grant replied to your comment",
"body": "Arcus velociter campana dapifer subnecto tener antea amaritudo.",
"isRead": false,
"link": "https://example.com/reply/eMFRWYEI",
"createdAt": "2026-01-18T15:50:11.907Z"
}