Activity #1392
User #180 mention Beau Stiedemann mentioned you in a post
6/29/2025, 9:50:53 PM
Overview
notifications / #1392
User #180 mention Beau Stiedemann mentioned you in a post
6/29/2025, 9:50:53 PM
User #180 mention Beau Stiedemann mentioned you in a post
6/29/2025, 9:50:53 PM
View recordUser #180 mention Beau Stiedemann mentioned you in a post · 6/29/2025, 9:50:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1392" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1392" ); 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/1392"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1392"
)
notification = res.json() Response
{
"id": 1392,
"userId": 180,
"type": "mention",
"title": "Beau Stiedemann mentioned you in a post",
"body": "Patior thesaurus accusamus taedium cupressus caput.",
"isRead": false,
"link": "https://example.com/mention/_pBwY86W",
"createdAt": "2025-06-29T21:50:53.206Z"
}