Activity #588
User #215 mention Beau Stiedemann mentioned you in a post
10/24/2025, 5:35:18 AM
Overview
notifications / #588
User #215 mention Beau Stiedemann mentioned you in a post
10/24/2025, 5:35:18 AM
User #215 mention Beau Stiedemann mentioned you in a post
10/24/2025, 5:35:18 AM
View recordUser #215 mention Beau Stiedemann mentioned you in a post · 10/24/2025, 5:35:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/588" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/588" ); 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/588"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/588"
)
notification = res.json() Response
{
"id": 588,
"userId": 215,
"type": "mention",
"title": "Beau Stiedemann mentioned you in a post",
"body": "Triumphus volup acidus vere trepide totam clamo.",
"isRead": true,
"link": "https://example.com/mention/su1a51NS",
"createdAt": "2025-10-24T05:35:18.353Z"
}