Activity #293
User #219 reply Wallace Batz replied to your comment
3/30/2026, 4:28:47 AM
Overview
notifications / #293
User #219 reply Wallace Batz replied to your comment
3/30/2026, 4:28:47 AM
User #219 reply Wallace Batz replied to your comment
3/30/2026, 4:28:47 AM
View recordUser #219 reply Wallace Batz replied to your comment · 3/30/2026, 4:28:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/293" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/293" ); 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/293"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/293"
)
notification = res.json() Response
{
"id": 293,
"userId": 219,
"type": "reply",
"title": "Wallace Batz replied to your comment",
"body": "Velum acerbitas vesper centum calculus iste.",
"isRead": false,
"link": "https://example.com/reply/saYrwIPd",
"createdAt": "2026-03-30T04:28:47.063Z"
}