Activity #932
User #159 reply Tiara Wilderman replied to your comment
10/16/2025, 12:21:39 AM
Overview
notifications / #932
User #159 reply Tiara Wilderman replied to your comment
10/16/2025, 12:21:39 AM
User #159 reply Tiara Wilderman replied to your comment
10/16/2025, 12:21:39 AM
View recordUser #159 reply Tiara Wilderman replied to your comment · 10/16/2025, 12:21:39 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/932" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/932" ); 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/932"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/932"
)
notification = res.json() Response
{
"id": 932,
"userId": 159,
"type": "reply",
"title": "Tiara Wilderman replied to your comment",
"body": "Terebro suasoria paens tremo coerceo impedit defessus contra defessus.",
"isRead": false,
"link": "https://example.com/reply/cp9tm0T7",
"createdAt": "2025-10-16T00:21:39.206Z"
}