Activity #931
User #15 mention Wallace Batz mentioned you in a post
8/16/2025, 9:30:08 PM
Overview
notifications / #931
User #15 mention Wallace Batz mentioned you in a post
8/16/2025, 9:30:08 PM
User #15 mention Wallace Batz mentioned you in a post
8/16/2025, 9:30:08 PM
View recordUser #15 mention Wallace Batz mentioned you in a post · 8/16/2025, 9:30:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/931" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/931" ); 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/931"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/931"
)
notification = res.json() Response
{
"id": 931,
"userId": 15,
"type": "mention",
"title": "Wallace Batz mentioned you in a post",
"body": "Tardus urbs canto tamquam.",
"isRead": false,
"link": "https://example.com/mention/EY1n8U6n",
"createdAt": "2025-08-16T21:30:08.433Z"
}