Activity #343
User #64 reply Telly Sanford replied to your comment
2/6/2026, 11:40:45 PM
Overview
notifications / #343
User #64 reply Telly Sanford replied to your comment
2/6/2026, 11:40:45 PM
User #64 reply Telly Sanford replied to your comment
2/6/2026, 11:40:45 PM
View recordUser #64 reply Telly Sanford replied to your comment · 2/6/2026, 11:40:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/343" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/343" ); 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/343"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/343"
)
notification = res.json() Response
{
"id": 343,
"userId": 64,
"type": "reply",
"title": "Telly Sanford replied to your comment",
"body": "Carus eaque decor ancilla.",
"isRead": false,
"link": "https://example.com/reply/xdrvKsZ4",
"createdAt": "2026-02-06T23:40:45.178Z"
}