Activity #813
User #91 mention Ericka DuBuque mentioned you in a post
1/12/2026, 6:44:01 PM
Overview
notifications / #813
User #91 mention Ericka DuBuque mentioned you in a post
1/12/2026, 6:44:01 PM
User #91 mention Ericka DuBuque mentioned you in a post
1/12/2026, 6:44:01 PM
View recordUser #91 mention Ericka DuBuque mentioned you in a post · 1/12/2026, 6:44:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/813" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/813" ); 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/813"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/813"
)
notification = res.json() Response
{
"id": 813,
"userId": 91,
"type": "mention",
"title": "Ericka DuBuque mentioned you in a post",
"body": "Terreo agnitio civis odio teres facere substantia ventus.",
"isRead": true,
"link": "https://example.com/mention/NNx2gR9X",
"createdAt": "2026-01-12T18:44:01.143Z"
}