Activity #979
User #97 mention Terence Lemke mentioned you in a post
3/15/2026, 5:44:05 PM
Overview
notifications / #979
User #97 mention Terence Lemke mentioned you in a post
3/15/2026, 5:44:05 PM
User #97 mention Terence Lemke mentioned you in a post
3/15/2026, 5:44:05 PM
View recordUser #97 mention Terence Lemke mentioned you in a post · 3/15/2026, 5:44:05 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/979" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/979" ); 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/979"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/979"
)
notification = res.json() Response
{
"id": 979,
"userId": 97,
"type": "mention",
"title": "Terence Lemke mentioned you in a post",
"body": "Nulla addo caritas.",
"isRead": false,
"link": "https://example.com/mention/06GWcyxK",
"createdAt": "2026-03-15T17:44:05.263Z"
}