Activity #608
User #187 reply Brock Hackett replied to your comment
9/3/2025, 12:43:04 AM
Overview
notifications / #608
User #187 reply Brock Hackett replied to your comment
9/3/2025, 12:43:04 AM
User #187 reply Brock Hackett replied to your comment
9/3/2025, 12:43:04 AM
View recordUser #187 reply Brock Hackett replied to your comment · 9/3/2025, 12:43:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/608" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/608" ); 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/608"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/608"
)
notification = res.json() Response
{
"id": 608,
"userId": 187,
"type": "reply",
"title": "Brock Hackett replied to your comment",
"body": "Annus articulus defaeco omnis sortitus vitae a attollo.",
"isRead": true,
"link": "https://example.com/reply/Tug0oblR",
"createdAt": "2025-09-03T00:43:04.877Z"
}