Activity #595
User #20 mention Mathilde Ziemann-Nienow mentioned you in a post
2/16/2026, 12:18:03 AM
Overview
notifications / #595
User #20 mention Mathilde Ziemann-Nienow mentioned you in a post
2/16/2026, 12:18:03 AM
User #20 mention Mathilde Ziemann-Nienow mentioned you in a post
2/16/2026, 12:18:03 AM
View recordUser #20 mention Mathilde Ziemann-Nienow mentioned you in a post · 2/16/2026, 12:18:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/595" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/595" ); 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/595"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/595"
)
notification = res.json() Response
{
"id": 595,
"userId": 20,
"type": "mention",
"title": "Mathilde Ziemann-Nienow mentioned you in a post",
"body": "Aperiam recusandae amor cupiditate delectatio ager volup vulgaris.",
"isRead": true,
"link": "https://example.com/mention/Qw2rqR1y",
"createdAt": "2026-02-16T00:18:03.515Z"
}