Activity #1251
User #111 mention Wendy Borer mentioned you in a post
11/15/2025, 4:37:22 PM
Overview
notifications / #1251
User #111 mention Wendy Borer mentioned you in a post
11/15/2025, 4:37:22 PM
User #111 mention Wendy Borer mentioned you in a post
11/15/2025, 4:37:22 PM
View recordUser #111 mention Wendy Borer mentioned you in a post · 11/15/2025, 4:37:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1251" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1251" ); 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/1251"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1251"
)
notification = res.json() Response
{
"id": 1251,
"userId": 111,
"type": "mention",
"title": "Wendy Borer mentioned you in a post",
"body": "Vito excepturi aedificium voco.",
"isRead": true,
"link": "https://example.com/mention/Yq7zB7EI",
"createdAt": "2025-11-15T16:37:22.819Z"
}