Activity #1903
User #93 mention Trace Witting-Stamm mentioned you in a post
3/14/2026, 4:22:42 PM
Overview
notifications / #1903
User #93 mention Trace Witting-Stamm mentioned you in a post
3/14/2026, 4:22:42 PM
User #93 mention Trace Witting-Stamm mentioned you in a post
3/14/2026, 4:22:42 PM
View recordUser #93 mention Trace Witting-Stamm mentioned you in a post · 3/14/2026, 4:22:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1903" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1903" ); 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/1903"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1903"
)
notification = res.json() Response
{
"id": 1903,
"userId": 93,
"type": "mention",
"title": "Trace Witting-Stamm mentioned you in a post",
"body": "Vitae demulceo cubicularis comptus inventore stella victus.",
"isRead": true,
"link": "https://example.com/mention/_iY8qI6u",
"createdAt": "2026-03-14T16:22:42.948Z"
}