Activity #906
User #120 mention Kathleen Lynch mentioned you in a post
8/2/2025, 3:05:28 PM
Overview
notifications / #906
User #120 mention Kathleen Lynch mentioned you in a post
8/2/2025, 3:05:28 PM
User #120 mention Kathleen Lynch mentioned you in a post
8/2/2025, 3:05:28 PM
View recordUser #120 mention Kathleen Lynch mentioned you in a post · 8/2/2025, 3:05:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/906" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/906" ); 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/906"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/906"
)
notification = res.json() Response
{
"id": 906,
"userId": 120,
"type": "mention",
"title": "Kathleen Lynch mentioned you in a post",
"body": "Adimpleo coadunatio nobis reprehenderit triduana aperio sordeo arcus.",
"isRead": true,
"link": "https://example.com/mention/gePNmXc1",
"createdAt": "2025-08-02T15:05:28.340Z"
}