Activity #1785
User #228 reply Sheridan Turcotte replied to your comment
11/25/2025, 6:02:06 AM
Overview
notifications / #1785
User #228 reply Sheridan Turcotte replied to your comment
11/25/2025, 6:02:06 AM
User #228 reply Sheridan Turcotte replied to your comment
11/25/2025, 6:02:06 AM
View recordUser #228 reply Sheridan Turcotte replied to your comment · 11/25/2025, 6:02:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1785" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1785" ); 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/1785"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1785"
)
notification = res.json() Response
{
"id": 1785,
"userId": 228,
"type": "reply",
"title": "Sheridan Turcotte replied to your comment",
"body": "Eum angelus accedo audentia.",
"isRead": true,
"link": "https://example.com/reply/Tl7HGwEn",
"createdAt": "2025-11-25T06:02:06.348Z"
}