Activity #665
User #63 mention Lavonne Schmidt mentioned you in a post
2/25/2026, 9:20:48 AM
Overview
notifications / #665
User #63 mention Lavonne Schmidt mentioned you in a post
2/25/2026, 9:20:48 AM
User #63 mention Lavonne Schmidt mentioned you in a post
2/25/2026, 9:20:48 AM
View recordUser #63 mention Lavonne Schmidt mentioned you in a post · 2/25/2026, 9:20:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/665" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/665" ); 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/665"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/665"
)
notification = res.json() Response
{
"id": 665,
"userId": 63,
"type": "mention",
"title": "Lavonne Schmidt mentioned you in a post",
"body": "Cavus voluptatum tamquam terreo illo demens cerno.",
"isRead": true,
"link": "https://example.com/mention/EQnVMcdJ",
"createdAt": "2026-02-25T09:20:48.535Z"
}