Activity #1155
User #158 mention Adrain Kris-Hermiston mentioned you in a post
4/11/2026, 7:25:20 AM
Overview
notifications / #1155
User #158 mention Adrain Kris-Hermiston mentioned you in a post
4/11/2026, 7:25:20 AM
User #158 mention Adrain Kris-Hermiston mentioned you in a post
4/11/2026, 7:25:20 AM
View recordUser #158 mention Adrain Kris-Hermiston mentioned you in a post · 4/11/2026, 7:25:20 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1155" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1155" ); 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/1155"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1155"
)
notification = res.json() Response
{
"id": 1155,
"userId": 158,
"type": "mention",
"title": "Adrain Kris-Hermiston mentioned you in a post",
"body": "Alius veritas accusantium molestiae compono audax volup sulum celo.",
"isRead": false,
"link": "https://example.com/mention/GIB9C-pI",
"createdAt": "2026-04-11T07:25:20.050Z"
}