Activity #817
User #224 mention Everett Yundt mentioned you in a post
11/11/2025, 9:14:30 PM
Overview
notifications / #817
User #224 mention Everett Yundt mentioned you in a post
11/11/2025, 9:14:30 PM
User #224 mention Everett Yundt mentioned you in a post
11/11/2025, 9:14:30 PM
View recordUser #224 mention Everett Yundt mentioned you in a post · 11/11/2025, 9:14:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/817" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/817" ); 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/817"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/817"
)
notification = res.json() Response
{
"id": 817,
"userId": 224,
"type": "mention",
"title": "Everett Yundt mentioned you in a post",
"body": "Adeptio clibanus adficio altus rem caritas vulnus tabgo confido compello.",
"isRead": true,
"link": null,
"createdAt": "2025-11-11T21:14:30.393Z"
}