Activity #1588
User #243 mention Nikolas Wolf mentioned you in a post
7/23/2025, 8:24:17 AM
Overview
notifications / #1588
User #243 mention Nikolas Wolf mentioned you in a post
7/23/2025, 8:24:17 AM
User #243 mention Nikolas Wolf mentioned you in a post
7/23/2025, 8:24:17 AM
View recordUser #243 mention Nikolas Wolf mentioned you in a post · 7/23/2025, 8:24:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1588" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1588" ); 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/1588"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1588"
)
notification = res.json() Response
{
"id": 1588,
"userId": 243,
"type": "mention",
"title": "Nikolas Wolf mentioned you in a post",
"body": "Corporis mollitia supplanto causa comprehendo suppono bellum.",
"isRead": false,
"link": "https://example.com/mention/NyywNM_s",
"createdAt": "2025-07-23T08:24:17.119Z"
}