Activity #358
User #48 mention Wallace Batz mentioned you in a post
2/5/2026, 5:17:34 AM
Overview
notifications / #358
User #48 mention Wallace Batz mentioned you in a post
2/5/2026, 5:17:34 AM
User #48 mention Wallace Batz mentioned you in a post
2/5/2026, 5:17:34 AM
View recordUser #48 mention Wallace Batz mentioned you in a post · 2/5/2026, 5:17:34 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/358" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/358" ); 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/358"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/358"
)
notification = res.json() Response
{
"id": 358,
"userId": 48,
"type": "mention",
"title": "Wallace Batz mentioned you in a post",
"body": "Occaecati acceptus summisse placeat sonitus denego confido delinquo creber.",
"isRead": true,
"link": null,
"createdAt": "2026-02-05T05:17:34.954Z"
}