Activity #1600
User #62 mention Kennith Hahn mentioned you in a post
2/9/2026, 5:58:03 PM
Overview
notifications / #1600
User #62 mention Kennith Hahn mentioned you in a post
2/9/2026, 5:58:03 PM
User #62 mention Kennith Hahn mentioned you in a post
2/9/2026, 5:58:03 PM
View recordUser #62 mention Kennith Hahn mentioned you in a post · 2/9/2026, 5:58:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1600" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1600" ); 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/1600"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1600"
)
notification = res.json() Response
{
"id": 1600,
"userId": 62,
"type": "mention",
"title": "Kennith Hahn mentioned you in a post",
"body": "Sufficio voro utrimque tempora paens tam derideo similique.",
"isRead": false,
"link": "https://example.com/mention/tN84aGi_",
"createdAt": "2026-02-09T17:58:03.802Z"
}