Activity #1544
User #223 mention Kaden Brekke mentioned you in a post
1/26/2026, 10:24:50 PM
Overview
notifications / #1544
User #223 mention Kaden Brekke mentioned you in a post
1/26/2026, 10:24:50 PM
User #223 mention Kaden Brekke mentioned you in a post
1/26/2026, 10:24:50 PM
View recordUser #223 mention Kaden Brekke mentioned you in a post · 1/26/2026, 10:24:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1544" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1544" ); 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/1544"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1544"
)
notification = res.json() Response
{
"id": 1544,
"userId": 223,
"type": "mention",
"title": "Kaden Brekke mentioned you in a post",
"body": "Cresco aperte delinquo vehemens ut corrigo vinco ab.",
"isRead": false,
"link": "https://example.com/mention/LseqBzbS",
"createdAt": "2026-01-26T22:24:50.000Z"
}