Activity #187
User #162 reply Jewell Olson replied to your comment
1/5/2026, 3:32:55 AM
Overview
notifications / #187
User #162 reply Jewell Olson replied to your comment
1/5/2026, 3:32:55 AM
User #162 reply Jewell Olson replied to your comment
1/5/2026, 3:32:55 AM
View recordUser #162 reply Jewell Olson replied to your comment · 1/5/2026, 3:32:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/187" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/187" ); 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/187"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/187"
)
notification = res.json() Response
{
"id": 187,
"userId": 162,
"type": "reply",
"title": "Jewell Olson replied to your comment",
"body": "Vobis eligendi cur volutabrum substantia.",
"isRead": true,
"link": "https://example.com/reply/PimsyKLm",
"createdAt": "2026-01-05T03:32:55.001Z"
}