Activity #1698
User #19 mention Frederic Armstrong mentioned you in a post
11/3/2025, 3:38:02 AM
Overview
notifications / #1698
User #19 mention Frederic Armstrong mentioned you in a post
11/3/2025, 3:38:02 AM
User #19 mention Frederic Armstrong mentioned you in a post
11/3/2025, 3:38:02 AM
View recordUser #19 mention Frederic Armstrong mentioned you in a post · 11/3/2025, 3:38:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1698" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1698" ); 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/1698"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1698"
)
notification = res.json() Response
{
"id": 1698,
"userId": 19,
"type": "mention",
"title": "Frederic Armstrong mentioned you in a post",
"body": "Audio theca corrumpo.",
"isRead": true,
"link": "https://example.com/mention/s82-3ASG",
"createdAt": "2025-11-03T03:38:02.254Z"
}