Activity #1808
User #86 mention Adrain Kris-Hermiston mentioned you in a post
8/1/2025, 5:07:02 PM
Overview
notifications / #1808
User #86 mention Adrain Kris-Hermiston mentioned you in a post
8/1/2025, 5:07:02 PM
User #86 mention Adrain Kris-Hermiston mentioned you in a post
8/1/2025, 5:07:02 PM
View recordUser #86 mention Adrain Kris-Hermiston mentioned you in a post · 8/1/2025, 5:07:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1808" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1808" ); 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/1808"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1808"
)
notification = res.json() Response
{
"id": 1808,
"userId": 86,
"type": "mention",
"title": "Adrain Kris-Hermiston mentioned you in a post",
"body": "Verto molestias cogo comedo vaco audio creator summa speculum vociferor.",
"isRead": true,
"link": "https://example.com/mention/M54xBXcf",
"createdAt": "2025-08-01T17:07:02.168Z"
}