Activity #948
User #189 reply Brock Hackett replied to your comment
8/2/2025, 2:46:29 AM
Overview
notifications / #948
User #189 reply Brock Hackett replied to your comment
8/2/2025, 2:46:29 AM
User #189 reply Brock Hackett replied to your comment
8/2/2025, 2:46:29 AM
View recordUser #189 reply Brock Hackett replied to your comment · 8/2/2025, 2:46:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/948" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/948" ); 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/948"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/948"
)
notification = res.json() Response
{
"id": 948,
"userId": 189,
"type": "reply",
"title": "Brock Hackett replied to your comment",
"body": "Velociter illum patior aliqua appono sumptus clam tandem demitto supplanto.",
"isRead": false,
"link": "https://example.com/reply/1CnV7tD4",
"createdAt": "2025-08-02T02:46:29.233Z"
}