Activity #86
User #144 reply Ari Howe replied to your comment
5/20/2026, 3:23:18 AM
Overview
notifications / #86
User #144 reply Ari Howe replied to your comment
5/20/2026, 3:23:18 AM
User #144 reply Ari Howe replied to your comment
5/20/2026, 3:23:18 AM
View recordUser #144 reply Ari Howe replied to your comment · 5/20/2026, 3:23:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/86" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/86" ); 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/86"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/86"
)
notification = res.json() Response
{
"id": 86,
"userId": 144,
"type": "reply",
"title": "Ari Howe replied to your comment",
"body": "Tenetur attonbitus cursus at arx thorax beatae conventus.",
"isRead": true,
"link": "https://example.com/reply/N9RwyOZt",
"createdAt": "2026-05-20T03:23:18.480Z"
}