Activity #24
User #17 mention Lacy Gusikowski mentioned you in a post
12/15/2025, 5:07:56 PM
Overview
notifications / #24
User #17 mention Lacy Gusikowski mentioned you in a post
12/15/2025, 5:07:56 PM
User #17 mention Lacy Gusikowski mentioned you in a post
12/15/2025, 5:07:56 PM
View recordUser #17 mention Lacy Gusikowski mentioned you in a post · 12/15/2025, 5:07:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/24" ); 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/24"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/24"
)
notification = res.json() Response
{
"id": 24,
"userId": 17,
"type": "mention",
"title": "Lacy Gusikowski mentioned you in a post",
"body": "Excepturi taedium desipio canto averto aufero autus maxime abutor.",
"isRead": false,
"link": "https://example.com/mention/mQDTpZg0",
"createdAt": "2025-12-15T17:07:56.549Z"
}