Activity #668
User #137 mention Darian Schaden mentioned you in a post
3/20/2026, 4:34:08 PM
Overview
notifications / #668
User #137 mention Darian Schaden mentioned you in a post
3/20/2026, 4:34:08 PM
User #137 mention Darian Schaden mentioned you in a post
3/20/2026, 4:34:08 PM
View recordUser #137 mention Darian Schaden mentioned you in a post · 3/20/2026, 4:34:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/668" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/668" ); 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/668"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/668"
)
notification = res.json() Response
{
"id": 668,
"userId": 137,
"type": "mention",
"title": "Darian Schaden mentioned you in a post",
"body": "Solio dapifer certe centum basium conor.",
"isRead": false,
"link": "https://example.com/mention/G-0sOOuT",
"createdAt": "2026-03-20T16:34:08.455Z"
}