Activity #911
User #66 mention Clementine Nicolas mentioned you in a post
6/2/2025, 3:26:59 PM
Overview
notifications / #911
User #66 mention Clementine Nicolas mentioned you in a post
6/2/2025, 3:26:59 PM
User #66 mention Clementine Nicolas mentioned you in a post
6/2/2025, 3:26:59 PM
View recordUser #66 mention Clementine Nicolas mentioned you in a post · 6/2/2025, 3:26:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/911" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/911" ); 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/911"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/911"
)
notification = res.json() Response
{
"id": 911,
"userId": 66,
"type": "mention",
"title": "Clementine Nicolas mentioned you in a post",
"body": "Tui suscipit provident territo facere curto conor uberrime vulnus quas.",
"isRead": false,
"link": null,
"createdAt": "2025-06-02T15:26:59.308Z"
}