Activity #940
User #229 reply Matt Kuhic replied to your comment
2/10/2026, 10:02:11 AM
Overview
notifications / #940
User #229 reply Matt Kuhic replied to your comment
2/10/2026, 10:02:11 AM
User #229 reply Matt Kuhic replied to your comment
2/10/2026, 10:02:11 AM
View recordUser #229 reply Matt Kuhic replied to your comment · 2/10/2026, 10:02:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/940" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/940" ); 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/940"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/940"
)
notification = res.json() Response
{
"id": 940,
"userId": 229,
"type": "reply",
"title": "Matt Kuhic replied to your comment",
"body": "Deporto alveus complectus adsidue amita color patior arcus.",
"isRead": true,
"link": null,
"createdAt": "2026-02-10T10:02:11.542Z"
}