Activity #1678
User #20 mention Ericka DuBuque mentioned you in a post
3/7/2026, 7:24:29 AM
Overview
notifications / #1678
User #20 mention Ericka DuBuque mentioned you in a post
3/7/2026, 7:24:29 AM
User #20 mention Ericka DuBuque mentioned you in a post
3/7/2026, 7:24:29 AM
View recordUser #20 mention Ericka DuBuque mentioned you in a post · 3/7/2026, 7:24:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1678" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1678" ); 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/1678"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1678"
)
notification = res.json() Response
{
"id": 1678,
"userId": 20,
"type": "mention",
"title": "Ericka DuBuque mentioned you in a post",
"body": "Adipiscor urbanus molestias caste acer currus pectus cubitum assentator.",
"isRead": true,
"link": null,
"createdAt": "2026-03-07T07:24:29.305Z"
}