Activity #914
User #163 mention Cassidy Christiansen mentioned you in a post
5/31/2025, 2:49:14 AM
Overview
notifications / #914
User #163 mention Cassidy Christiansen mentioned you in a post
5/31/2025, 2:49:14 AM
User #163 mention Cassidy Christiansen mentioned you in a post
5/31/2025, 2:49:14 AM
View recordUser #163 mention Cassidy Christiansen mentioned you in a post · 5/31/2025, 2:49:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/914" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/914" ); 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/914"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/914"
)
notification = res.json() Response
{
"id": 914,
"userId": 163,
"type": "mention",
"title": "Cassidy Christiansen mentioned you in a post",
"body": "Aro laboriosam cura alius usus arbustum vis.",
"isRead": true,
"link": "https://example.com/mention/Kgu7vKTZ",
"createdAt": "2025-05-31T02:49:14.566Z"
}