Activity #1447
User #76 mention Judy Hackett mentioned you in a post
11/29/2025, 7:17:50 AM
Overview
notifications / #1447
User #76 mention Judy Hackett mentioned you in a post
11/29/2025, 7:17:50 AM
User #76 mention Judy Hackett mentioned you in a post
11/29/2025, 7:17:50 AM
View recordUser #76 mention Judy Hackett mentioned you in a post · 11/29/2025, 7:17:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1447" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1447" ); 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/1447"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1447"
)
notification = res.json() Response
{
"id": 1447,
"userId": 76,
"type": "mention",
"title": "Judy Hackett mentioned you in a post",
"body": "Ceno subiungo animus spero arca carcer totus arbustum anser.",
"isRead": true,
"link": null,
"createdAt": "2025-11-29T07:17:50.148Z"
}