Activity #936
User #81 mention Tillman Breitenberg mentioned you in a post
1/6/2026, 9:06:56 AM
Overview
notifications / #936
User #81 mention Tillman Breitenberg mentioned you in a post
1/6/2026, 9:06:56 AM
User #81 mention Tillman Breitenberg mentioned you in a post
1/6/2026, 9:06:56 AM
View recordUser #81 mention Tillman Breitenberg mentioned you in a post · 1/6/2026, 9:06:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/936" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/936" ); 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/936"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/936"
)
notification = res.json() Response
{
"id": 936,
"userId": 81,
"type": "mention",
"title": "Tillman Breitenberg mentioned you in a post",
"body": "Crur ancilla expedita comes vero crux vorago terror.",
"isRead": false,
"link": "https://example.com/mention/NiAuP12_",
"createdAt": "2026-01-06T09:06:56.705Z"
}