Activity #974
User #122 mention Mathilde Ziemann-Nienow mentioned you in a post
3/31/2026, 4:11:09 PM
Overview
notifications / #974
User #122 mention Mathilde Ziemann-Nienow mentioned you in a post
3/31/2026, 4:11:09 PM
User #122 mention Mathilde Ziemann-Nienow mentioned you in a post
3/31/2026, 4:11:09 PM
View recordUser #122 mention Mathilde Ziemann-Nienow mentioned you in a post · 3/31/2026, 4:11:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/974" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/974" ); 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/974"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/974"
)
notification = res.json() Response
{
"id": 974,
"userId": 122,
"type": "mention",
"title": "Mathilde Ziemann-Nienow mentioned you in a post",
"body": "Tot vita vallum.",
"isRead": false,
"link": "https://example.com/mention/cwuzwLs0",
"createdAt": "2026-03-31T16:11:09.174Z"
}