Activity #1577
User #64 mention Einar Volkman mentioned you in a post
6/26/2025, 8:21:00 PM
Overview
notifications / #1577
User #64 mention Einar Volkman mentioned you in a post
6/26/2025, 8:21:00 PM
User #64 mention Einar Volkman mentioned you in a post
6/26/2025, 8:21:00 PM
View recordUser #64 mention Einar Volkman mentioned you in a post · 6/26/2025, 8:21:00 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1577" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1577" ); 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/1577"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1577"
)
notification = res.json() Response
{
"id": 1577,
"userId": 64,
"type": "mention",
"title": "Einar Volkman mentioned you in a post",
"body": "Blanditiis illo dolorem minus trado.",
"isRead": true,
"link": "https://example.com/mention/7VdTdRyD",
"createdAt": "2025-06-26T20:21:00.130Z"
}