Activity #1336
User #244 mention Alexander Beahan mentioned you in a post
11/23/2025, 10:52:46 AM
Overview
notifications / #1336
User #244 mention Alexander Beahan mentioned you in a post
11/23/2025, 10:52:46 AM
User #244 mention Alexander Beahan mentioned you in a post
11/23/2025, 10:52:46 AM
View recordUser #244 mention Alexander Beahan mentioned you in a post · 11/23/2025, 10:52:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1336" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1336" ); 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/1336"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1336"
)
notification = res.json() Response
{
"id": 1336,
"userId": 244,
"type": "mention",
"title": "Alexander Beahan mentioned you in a post",
"body": "Auditor tantillus cui adstringo terror vitium avaritia carbo laudantium unus.",
"isRead": false,
"link": null,
"createdAt": "2025-11-23T10:52:46.406Z"
}