Activity #224
User #144 mention Aaron Fritsch mentioned you in a post
12/1/2025, 11:10:11 AM
Overview
notifications / #224
User #144 mention Aaron Fritsch mentioned you in a post
12/1/2025, 11:10:11 AM
User #144 mention Aaron Fritsch mentioned you in a post
12/1/2025, 11:10:11 AM
View recordUser #144 mention Aaron Fritsch mentioned you in a post · 12/1/2025, 11:10:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/224" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/224" ); 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/224"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/224"
)
notification = res.json() Response
{
"id": 224,
"userId": 144,
"type": "mention",
"title": "Aaron Fritsch mentioned you in a post",
"body": "Denego spectaculum aduro sublime asper audeo.",
"isRead": true,
"link": "https://example.com/mention/qLKneWXO",
"createdAt": "2025-12-01T11:10:11.771Z"
}