Activity #1655
User #132 mention Matilde Beahan mentioned you in a post
10/17/2025, 2:59:38 PM
Overview
notifications / #1655
User #132 mention Matilde Beahan mentioned you in a post
10/17/2025, 2:59:38 PM
User #132 mention Matilde Beahan mentioned you in a post
10/17/2025, 2:59:38 PM
View recordUser #132 mention Matilde Beahan mentioned you in a post · 10/17/2025, 2:59:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1655" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1655" ); 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/1655"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1655"
)
notification = res.json() Response
{
"id": 1655,
"userId": 132,
"type": "mention",
"title": "Matilde Beahan mentioned you in a post",
"body": "Confero aetas umerus colligo caute tibi auctor.",
"isRead": true,
"link": "https://example.com/mention/_Jopwk-A",
"createdAt": "2025-10-17T14:59:38.842Z"
}