Activity #1171
User #32 mention Van Crona mentioned you in a post
3/28/2026, 11:20:13 AM
Overview
notifications / #1171
User #32 mention Van Crona mentioned you in a post
3/28/2026, 11:20:13 AM
User #32 mention Van Crona mentioned you in a post
3/28/2026, 11:20:13 AM
View recordUser #32 mention Van Crona mentioned you in a post · 3/28/2026, 11:20:13 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1171" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1171" ); 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/1171"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1171"
)
notification = res.json() Response
{
"id": 1171,
"userId": 32,
"type": "mention",
"title": "Van Crona mentioned you in a post",
"body": "Patrocinor administratio baiulus adamo vacuus saepe depereo tenus spectaculum.",
"isRead": false,
"link": "https://example.com/mention/vEYxR2mb",
"createdAt": "2026-03-28T11:20:13.112Z"
}