Activity #1506
User #184 reply Bradford Doyle replied to your comment
11/25/2025, 10:48:28 AM
Overview
notifications / #1506
User #184 reply Bradford Doyle replied to your comment
11/25/2025, 10:48:28 AM
User #184 reply Bradford Doyle replied to your comment
11/25/2025, 10:48:28 AM
View recordUser #184 reply Bradford Doyle replied to your comment · 11/25/2025, 10:48:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1506" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1506" ); 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/1506"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1506"
)
notification = res.json() Response
{
"id": 1506,
"userId": 184,
"type": "reply",
"title": "Bradford Doyle replied to your comment",
"body": "Arcesso vilitas suffragium nihil caterva cupiditate corpus auctus trucido.",
"isRead": true,
"link": "https://example.com/reply/KRedx9i-",
"createdAt": "2025-11-25T10:48:28.171Z"
}