Activity #542
User #79 mention Darian Schaden mentioned you in a post
6/25/2025, 2:49:07 AM
Overview
notifications / #542
User #79 mention Darian Schaden mentioned you in a post
6/25/2025, 2:49:07 AM
User #79 mention Darian Schaden mentioned you in a post
6/25/2025, 2:49:07 AM
View recordUser #79 mention Darian Schaden mentioned you in a post · 6/25/2025, 2:49:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/542" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/542" ); 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/542"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/542"
)
notification = res.json() Response
{
"id": 542,
"userId": 79,
"type": "mention",
"title": "Darian Schaden mentioned you in a post",
"body": "Advoco verbera atavus vindico subseco pecto curia clam adstringo.",
"isRead": false,
"link": "https://example.com/mention/1oG8_4nU",
"createdAt": "2025-06-25T02:49:07.974Z"
}