Activity #798
User #117 reply Jaylon Conroy replied to your comment
2/3/2026, 9:33:02 PM
Overview
notifications / #798
User #117 reply Jaylon Conroy replied to your comment
2/3/2026, 9:33:02 PM
User #117 reply Jaylon Conroy replied to your comment
2/3/2026, 9:33:02 PM
View recordUser #117 reply Jaylon Conroy replied to your comment · 2/3/2026, 9:33:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/798" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/798" ); 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/798"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/798"
)
notification = res.json() Response
{
"id": 798,
"userId": 117,
"type": "reply",
"title": "Jaylon Conroy replied to your comment",
"body": "Barba volaticus despecto.",
"isRead": true,
"link": "https://example.com/reply/EZ7cykf3",
"createdAt": "2026-02-03T21:33:02.773Z"
}