Activity #564
User #246 reply Myrtie Daniel replied to your comment
2/22/2026, 7:45:41 PM
Overview
notifications / #564
User #246 reply Myrtie Daniel replied to your comment
2/22/2026, 7:45:41 PM
User #246 reply Myrtie Daniel replied to your comment
2/22/2026, 7:45:41 PM
View recordUser #246 reply Myrtie Daniel replied to your comment · 2/22/2026, 7:45:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/564" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/564" ); 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/564"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/564"
)
notification = res.json() Response
{
"id": 564,
"userId": 246,
"type": "reply",
"title": "Myrtie Daniel replied to your comment",
"body": "Enim ademptio summisse creator conitor venio supellex.",
"isRead": false,
"link": "https://example.com/reply/j6lTPL7L",
"createdAt": "2026-02-22T19:45:41.350Z"
}