Activity #1482
User #171 mention Lennie Dickinson mentioned you in a post
4/2/2026, 6:35:58 AM
Overview
notifications / #1482
User #171 mention Lennie Dickinson mentioned you in a post
4/2/2026, 6:35:58 AM
User #171 mention Lennie Dickinson mentioned you in a post
4/2/2026, 6:35:58 AM
View recordUser #171 mention Lennie Dickinson mentioned you in a post · 4/2/2026, 6:35:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1482" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1482" ); 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/1482"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1482"
)
notification = res.json() Response
{
"id": 1482,
"userId": 171,
"type": "mention",
"title": "Lennie Dickinson mentioned you in a post",
"body": "Eveniet tantum delibero arguo collum.",
"isRead": true,
"link": "https://example.com/mention/zz9sXtdw",
"createdAt": "2026-04-02T06:35:58.755Z"
}