Activity #151
User #4 reply Phyllis Hyatt replied to your comment
3/7/2026, 11:04:24 AM
Overview
notifications / #151
User #4 reply Phyllis Hyatt replied to your comment
3/7/2026, 11:04:24 AM
User #4 reply Phyllis Hyatt replied to your comment
3/7/2026, 11:04:24 AM
View recordUser #4 reply Phyllis Hyatt replied to your comment · 3/7/2026, 11:04:24 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/151" ); 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/151"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/151"
)
notification = res.json() Response
{
"id": 151,
"userId": 4,
"type": "reply",
"title": "Phyllis Hyatt replied to your comment",
"body": "Comparo articulus causa incidunt arx totus capillus delicate anser tum.",
"isRead": false,
"link": "https://example.com/reply/vCVYQZmB",
"createdAt": "2026-03-07T11:04:24.412Z"
}