Activity #1443
User #222 reply Simeon Robel replied to your comment
6/24/2025, 11:15:09 AM
Overview
notifications / #1443
User #222 reply Simeon Robel replied to your comment
6/24/2025, 11:15:09 AM
User #222 reply Simeon Robel replied to your comment
6/24/2025, 11:15:09 AM
View recordUser #222 reply Simeon Robel replied to your comment · 6/24/2025, 11:15:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1443" ); 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/1443"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1443"
)
notification = res.json() Response
{
"id": 1443,
"userId": 222,
"type": "reply",
"title": "Simeon Robel replied to your comment",
"body": "Nobis vulticulus deprecator virga volaticus crapula conatus vulgaris conitor.",
"isRead": true,
"link": "https://example.com/reply/7ocL5klk",
"createdAt": "2025-06-24T11:15:09.360Z"
}