Activity #805
User #63 reply Jaylon Conroy replied to your comment
4/19/2026, 11:19:14 PM
Overview
notifications / #805
User #63 reply Jaylon Conroy replied to your comment
4/19/2026, 11:19:14 PM
User #63 reply Jaylon Conroy replied to your comment
4/19/2026, 11:19:14 PM
View recordUser #63 reply Jaylon Conroy replied to your comment · 4/19/2026, 11:19:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/805" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/805" ); 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/805"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/805"
)
notification = res.json() Response
{
"id": 805,
"userId": 63,
"type": "reply",
"title": "Jaylon Conroy replied to your comment",
"body": "Combibo impedit sto error patruus adimpleo aliquid.",
"isRead": false,
"link": "https://example.com/reply/I9g7sTkZ",
"createdAt": "2026-04-19T23:19:14.774Z"
}