Activity #1719
User #112 mention Jolie Abernathy mentioned you in a post
7/23/2025, 3:40:48 AM
Overview
notifications / #1719
User #112 mention Jolie Abernathy mentioned you in a post
7/23/2025, 3:40:48 AM
User #112 mention Jolie Abernathy mentioned you in a post
7/23/2025, 3:40:48 AM
View recordUser #112 mention Jolie Abernathy mentioned you in a post · 7/23/2025, 3:40:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1719" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1719" ); 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/1719"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1719"
)
notification = res.json() Response
{
"id": 1719,
"userId": 112,
"type": "mention",
"title": "Jolie Abernathy mentioned you in a post",
"body": "Comburo ut curriculum absconditus amiculum pauci aro vesper conicio veritas.",
"isRead": true,
"link": "https://example.com/mention/M2AzzQtE",
"createdAt": "2025-07-23T03:40:48.984Z"
}