Activity #1700
User #240 mention General Morissette mentioned you in a post
9/9/2025, 7:56:54 PM
Overview
notifications / #1700
User #240 mention General Morissette mentioned you in a post
9/9/2025, 7:56:54 PM
User #240 mention General Morissette mentioned you in a post
9/9/2025, 7:56:54 PM
View recordUser #240 mention General Morissette mentioned you in a post · 9/9/2025, 7:56:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1700" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1700" ); 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/1700"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1700"
)
notification = res.json() Response
{
"id": 1700,
"userId": 240,
"type": "mention",
"title": "General Morissette mentioned you in a post",
"body": "Sed corrumpo vilis thema.",
"isRead": false,
"link": "https://example.com/mention/GN2BthKY",
"createdAt": "2025-09-09T19:56:54.162Z"
}