Activity #1123
User #2 reply Tiara Wilderman replied to your comment
12/20/2025, 5:16:12 PM
Overview
notifications / #1123
User #2 reply Tiara Wilderman replied to your comment
12/20/2025, 5:16:12 PM
User #2 reply Tiara Wilderman replied to your comment
12/20/2025, 5:16:12 PM
View recordUser #2 reply Tiara Wilderman replied to your comment · 12/20/2025, 5:16:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1123" ); 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/1123"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1123"
)
notification = res.json() Response
{
"id": 1123,
"userId": 2,
"type": "reply",
"title": "Tiara Wilderman replied to your comment",
"body": "Ipsum subiungo coepi acer.",
"isRead": true,
"link": "https://example.com/reply/OHJ5uqlN",
"createdAt": "2025-12-20T17:16:12.795Z"
}