Activity #447
User #28 mention Roma Durgan mentioned you in a post
12/28/2025, 6:02:52 AM
Overview
notifications / #447
User #28 mention Roma Durgan mentioned you in a post
12/28/2025, 6:02:52 AM
User #28 mention Roma Durgan mentioned you in a post
12/28/2025, 6:02:52 AM
View recordUser #28 mention Roma Durgan mentioned you in a post · 12/28/2025, 6:02:52 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/447" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/447" ); 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/447"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/447"
)
notification = res.json() Response
{
"id": 447,
"userId": 28,
"type": "mention",
"title": "Roma Durgan mentioned you in a post",
"body": "Tui contigo terga chirographum stabilis volaticus.",
"isRead": false,
"link": "https://example.com/mention/XI6xiUDq",
"createdAt": "2025-12-28T06:02:52.415Z"
}