Activity #1883
User #54 reply Amely Daniel replied to your comment
1/21/2026, 11:22:48 PM
Overview
notifications / #1883
User #54 reply Amely Daniel replied to your comment
1/21/2026, 11:22:48 PM
User #54 reply Amely Daniel replied to your comment
1/21/2026, 11:22:48 PM
View recordUser #54 reply Amely Daniel replied to your comment · 1/21/2026, 11:22:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1883" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1883" ); 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/1883"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1883"
)
notification = res.json() Response
{
"id": 1883,
"userId": 54,
"type": "reply",
"title": "Amely Daniel replied to your comment",
"body": "Tonsor ex caput bene ultio aperte ratione culpo occaecati accommodo.",
"isRead": false,
"link": "https://example.com/reply/-Q5KTdjK",
"createdAt": "2026-01-21T23:22:48.714Z"
}