Activity #560
User #160 mention Jameson Considine mentioned you in a post
8/15/2025, 1:26:55 PM
Overview
notifications / #560
User #160 mention Jameson Considine mentioned you in a post
8/15/2025, 1:26:55 PM
User #160 mention Jameson Considine mentioned you in a post
8/15/2025, 1:26:55 PM
View recordUser #160 mention Jameson Considine mentioned you in a post · 8/15/2025, 1:26:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/560" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/560" ); 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/560"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/560"
)
notification = res.json() Response
{
"id": 560,
"userId": 160,
"type": "mention",
"title": "Jameson Considine mentioned you in a post",
"body": "Aeger eos conspergo thesis cariosus.",
"isRead": true,
"link": "https://example.com/mention/IdkO27xR",
"createdAt": "2025-08-15T13:26:55.739Z"
}