Activity #407
User #193 reply Alexa Rippin replied to your comment
1/15/2026, 11:12:49 AM
Overview
notifications / #407
User #193 reply Alexa Rippin replied to your comment
1/15/2026, 11:12:49 AM
User #193 reply Alexa Rippin replied to your comment
1/15/2026, 11:12:49 AM
View recordUser #193 reply Alexa Rippin replied to your comment · 1/15/2026, 11:12:49 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/407" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/407" ); 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/407"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/407"
)
notification = res.json() Response
{
"id": 407,
"userId": 193,
"type": "reply",
"title": "Alexa Rippin replied to your comment",
"body": "Curtus clarus canto creo utor spargo congregatio asporto sum beatus.",
"isRead": true,
"link": "https://example.com/reply/ezzkPpGV",
"createdAt": "2026-01-15T11:12:49.306Z"
}