Activity #1589
User #21 mention Daisy Kuhic mentioned you in a post
12/28/2025, 8:26:09 PM
Overview
notifications / #1589
User #21 mention Daisy Kuhic mentioned you in a post
12/28/2025, 8:26:09 PM
User #21 mention Daisy Kuhic mentioned you in a post
12/28/2025, 8:26:09 PM
View recordUser #21 mention Daisy Kuhic mentioned you in a post · 12/28/2025, 8:26:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1589" ); 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/1589"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1589"
)
notification = res.json() Response
{
"id": 1589,
"userId": 21,
"type": "mention",
"title": "Daisy Kuhic mentioned you in a post",
"body": "Clam tondeo utpote ventus thorax tamisium.",
"isRead": false,
"link": "https://example.com/mention/v0Vy0eUb",
"createdAt": "2025-12-28T20:26:09.126Z"
}