Activity #1427
User #120 mention Charlene Kuhic mentioned you in a post
11/11/2025, 8:15:55 AM
Overview
notifications / #1427
User #120 mention Charlene Kuhic mentioned you in a post
11/11/2025, 8:15:55 AM
User #120 mention Charlene Kuhic mentioned you in a post
11/11/2025, 8:15:55 AM
View recordUser #120 mention Charlene Kuhic mentioned you in a post · 11/11/2025, 8:15:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1427" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1427" ); 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/1427"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1427"
)
notification = res.json() Response
{
"id": 1427,
"userId": 120,
"type": "mention",
"title": "Charlene Kuhic mentioned you in a post",
"body": "Decens voluptate vespillo defero surculus confugo.",
"isRead": false,
"link": "https://example.com/mention/YNC1mhZm",
"createdAt": "2025-11-11T08:15:55.995Z"
}