Activity #1089
User #29 mention Terence Lemke mentioned you in a post
3/30/2026, 11:43:41 AM
Overview
notifications / #1089
User #29 mention Terence Lemke mentioned you in a post
3/30/2026, 11:43:41 AM
User #29 mention Terence Lemke mentioned you in a post
3/30/2026, 11:43:41 AM
View recordUser #29 mention Terence Lemke mentioned you in a post · 3/30/2026, 11:43:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1089" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1089" ); 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/1089"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1089"
)
notification = res.json() Response
{
"id": 1089,
"userId": 29,
"type": "mention",
"title": "Terence Lemke mentioned you in a post",
"body": "Vehemens sufficio tabula usque.",
"isRead": false,
"link": "https://example.com/mention/nLeyr5ae",
"createdAt": "2026-03-30T11:43:41.820Z"
}