Activity #1453
User #109 mention Mable West mentioned you in a post
8/23/2025, 9:18:33 PM
Overview
notifications / #1453
User #109 mention Mable West mentioned you in a post
8/23/2025, 9:18:33 PM
User #109 mention Mable West mentioned you in a post
8/23/2025, 9:18:33 PM
View recordUser #109 mention Mable West mentioned you in a post · 8/23/2025, 9:18:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1453" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1453" ); 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/1453"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1453"
)
notification = res.json() Response
{
"id": 1453,
"userId": 109,
"type": "mention",
"title": "Mable West mentioned you in a post",
"body": "Corona impedit claustrum correptius.",
"isRead": false,
"link": "https://example.com/mention/hlplm-C0",
"createdAt": "2025-08-23T21:18:33.560Z"
}