Activity #288
User #25 mention Norbert Jacobi mentioned you in a post
10/26/2025, 9:12:52 PM
Overview
notifications / #288
User #25 mention Norbert Jacobi mentioned you in a post
10/26/2025, 9:12:52 PM
User #25 mention Norbert Jacobi mentioned you in a post
10/26/2025, 9:12:52 PM
View recordUser #25 mention Norbert Jacobi mentioned you in a post · 10/26/2025, 9:12:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/288" ); 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/288"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/288"
)
notification = res.json() Response
{
"id": 288,
"userId": 25,
"type": "mention",
"title": "Norbert Jacobi mentioned you in a post",
"body": "Tabesco alii urbs caelum avarus aggero.",
"isRead": false,
"link": "https://example.com/mention/9EQekt7X",
"createdAt": "2025-10-26T21:12:52.686Z"
}