Activity #1877
User #179 reply Sheridan Turcotte replied to your comment
9/11/2025, 8:16:26 PM
Overview
notifications / #1877
User #179 reply Sheridan Turcotte replied to your comment
9/11/2025, 8:16:26 PM
User #179 reply Sheridan Turcotte replied to your comment
9/11/2025, 8:16:26 PM
View recordUser #179 reply Sheridan Turcotte replied to your comment · 9/11/2025, 8:16:26 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1877" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1877" ); 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/1877"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1877"
)
notification = res.json() Response
{
"id": 1877,
"userId": 179,
"type": "reply",
"title": "Sheridan Turcotte replied to your comment",
"body": "Victus tamen deprecator.",
"isRead": false,
"link": "https://example.com/reply/uJKBIk93",
"createdAt": "2025-09-11T20:16:26.409Z"
}