Activity #1481
User #116 reply Dwight Dicki-Medhurst replied to your comment
2/15/2026, 9:50:23 PM
Overview
notifications / #1481
User #116 reply Dwight Dicki-Medhurst replied to your comment
2/15/2026, 9:50:23 PM
User #116 reply Dwight Dicki-Medhurst replied to your comment
2/15/2026, 9:50:23 PM
View recordUser #116 reply Dwight Dicki-Medhurst replied to your comment · 2/15/2026, 9:50:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1481" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1481" ); 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/1481"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1481"
)
notification = res.json() Response
{
"id": 1481,
"userId": 116,
"type": "reply",
"title": "Dwight Dicki-Medhurst replied to your comment",
"body": "Utique comes subnecto depraedor concido tenuis maiores harum.",
"isRead": false,
"link": null,
"createdAt": "2026-02-15T21:50:23.093Z"
}