Activity #327
User #79 reply Matt Kuhic replied to your comment
2/27/2026, 4:40:54 AM
Overview
notifications / #327
User #79 reply Matt Kuhic replied to your comment
2/27/2026, 4:40:54 AM
User #79 reply Matt Kuhic replied to your comment
2/27/2026, 4:40:54 AM
View recordUser #79 reply Matt Kuhic replied to your comment · 2/27/2026, 4:40:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/327" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/327" ); 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/327"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/327"
)
notification = res.json() Response
{
"id": 327,
"userId": 79,
"type": "reply",
"title": "Matt Kuhic replied to your comment",
"body": "Delibero capio cattus amo coniuratio auxilium.",
"isRead": false,
"link": "https://example.com/reply/af4xbzRF",
"createdAt": "2026-02-27T04:40:54.899Z"
}