Activity #973
User #69 reply Wallace Batz replied to your comment
8/30/2025, 2:42:25 AM
Overview
notifications / #973
User #69 reply Wallace Batz replied to your comment
8/30/2025, 2:42:25 AM
User #69 reply Wallace Batz replied to your comment
8/30/2025, 2:42:25 AM
View recordUser #69 reply Wallace Batz replied to your comment · 8/30/2025, 2:42:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/973" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/973" ); 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/973"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/973"
)
notification = res.json() Response
{
"id": 973,
"userId": 69,
"type": "reply",
"title": "Wallace Batz replied to your comment",
"body": "Cena speculum demonstro comitatus venio comparo veritatis vomica credo vetus.",
"isRead": false,
"link": "https://example.com/reply/hN-fTpWC",
"createdAt": "2025-08-30T02:42:25.223Z"
}