Activity #994
User #183 mention Hershel Smitham mentioned you in a post
2/22/2026, 2:20:26 AM
Overview
notifications / #994
User #183 mention Hershel Smitham mentioned you in a post
2/22/2026, 2:20:26 AM
User #183 mention Hershel Smitham mentioned you in a post
2/22/2026, 2:20:26 AM
View recordUser #183 mention Hershel Smitham mentioned you in a post · 2/22/2026, 2:20:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/994" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/994" ); 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/994"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/994"
)
notification = res.json() Response
{
"id": 994,
"userId": 183,
"type": "mention",
"title": "Hershel Smitham mentioned you in a post",
"body": "Calamitas vulnus circumvenio inflammatio tabella tactus vos esse vesco.",
"isRead": false,
"link": null,
"createdAt": "2026-02-22T02:20:26.406Z"
}