Activity #1731
User #71 mention Claudie Hagenes mentioned you in a post
5/12/2026, 12:27:11 PM
Overview
notifications / #1731
User #71 mention Claudie Hagenes mentioned you in a post
5/12/2026, 12:27:11 PM
User #71 mention Claudie Hagenes mentioned you in a post
5/12/2026, 12:27:11 PM
View recordUser #71 mention Claudie Hagenes mentioned you in a post · 5/12/2026, 12:27:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1731" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1731" ); 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/1731"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1731"
)
notification = res.json() Response
{
"id": 1731,
"userId": 71,
"type": "mention",
"title": "Claudie Hagenes mentioned you in a post",
"body": "Coerceo conforto uredo vulgus canto turpis cena.",
"isRead": true,
"link": null,
"createdAt": "2026-05-12T12:27:11.332Z"
}