Activity #443
User #13 reply Abdul Rau replied to your comment
3/24/2026, 11:01:32 PM
Overview
notifications / #443
User #13 reply Abdul Rau replied to your comment
3/24/2026, 11:01:32 PM
User #13 reply Abdul Rau replied to your comment
3/24/2026, 11:01:32 PM
View recordUser #13 reply Abdul Rau replied to your comment · 3/24/2026, 11:01:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/443" ); 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/443"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/443"
)
notification = res.json() Response
{
"id": 443,
"userId": 13,
"type": "reply",
"title": "Abdul Rau replied to your comment",
"body": "Una creator fugit tolero aggero credo aegrus adnuo patrocinor approbo.",
"isRead": false,
"link": "https://example.com/reply/uDnZhOLl",
"createdAt": "2026-03-24T23:01:32.657Z"
}