Activity #300
User #240 mention Einar Volkman mentioned you in a post
10/30/2025, 2:45:50 PM
Overview
notifications / #300
User #240 mention Einar Volkman mentioned you in a post
10/30/2025, 2:45:50 PM
User #240 mention Einar Volkman mentioned you in a post
10/30/2025, 2:45:50 PM
View recordUser #240 mention Einar Volkman mentioned you in a post · 10/30/2025, 2:45:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/300" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/300" ); 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/300"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/300"
)
notification = res.json() Response
{
"id": 300,
"userId": 240,
"type": "mention",
"title": "Einar Volkman mentioned you in a post",
"body": "Cilicium circumvenio accusator.",
"isRead": true,
"link": "https://example.com/mention/GqeYMdT_",
"createdAt": "2025-10-30T14:45:50.229Z"
}