Activity #1973
User #228 mention Kennith Hahn mentioned you in a post
9/7/2025, 12:39:31 AM
Overview
notifications / #1973
User #228 mention Kennith Hahn mentioned you in a post
9/7/2025, 12:39:31 AM
User #228 mention Kennith Hahn mentioned you in a post
9/7/2025, 12:39:31 AM
View recordUser #228 mention Kennith Hahn mentioned you in a post · 9/7/2025, 12:39:31 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1973" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1973" ); 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/1973"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1973"
)
notification = res.json() Response
{
"id": 1973,
"userId": 228,
"type": "mention",
"title": "Kennith Hahn mentioned you in a post",
"body": "Unde audeo non ascisco aegrotatio adeptio aggero acer casso crinis.",
"isRead": false,
"link": "https://example.com/mention/_9dr5yC6",
"createdAt": "2025-09-07T00:39:31.286Z"
}