Activity #386
User #39 reply Jameson Considine replied to your comment
4/1/2026, 9:45:08 AM
Overview
notifications / #386
User #39 reply Jameson Considine replied to your comment
4/1/2026, 9:45:08 AM
User #39 reply Jameson Considine replied to your comment
4/1/2026, 9:45:08 AM
View recordUser #39 reply Jameson Considine replied to your comment · 4/1/2026, 9:45:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/386" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/386" ); 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/386"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/386"
)
notification = res.json() Response
{
"id": 386,
"userId": 39,
"type": "reply",
"title": "Jameson Considine replied to your comment",
"body": "Uredo conatus somnus cognomen cicuta abundans surculus clamo dolorum delectus.",
"isRead": true,
"link": "https://example.com/reply/Q3vBJBSX",
"createdAt": "2026-04-01T09:45:08.260Z"
}