Activity #1542
User #20 mention Lawrence Rogahn mentioned you in a post
1/29/2026, 3:55:46 AM
Overview
notifications / #1542
User #20 mention Lawrence Rogahn mentioned you in a post
1/29/2026, 3:55:46 AM
User #20 mention Lawrence Rogahn mentioned you in a post
1/29/2026, 3:55:46 AM
View recordUser #20 mention Lawrence Rogahn mentioned you in a post · 1/29/2026, 3:55:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1542" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1542" ); 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/1542"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1542"
)
notification = res.json() Response
{
"id": 1542,
"userId": 20,
"type": "mention",
"title": "Lawrence Rogahn mentioned you in a post",
"body": "Derideo congregatio ustulo bellum natus.",
"isRead": false,
"link": "https://example.com/mention/j9NWKmvD",
"createdAt": "2026-01-29T03:55:46.810Z"
}