Activity #737
User #18 mention Joseph Nitzsche mentioned you in a post
10/11/2025, 10:02:50 AM
Overview
notifications / #737
User #18 mention Joseph Nitzsche mentioned you in a post
10/11/2025, 10:02:50 AM
User #18 mention Joseph Nitzsche mentioned you in a post
10/11/2025, 10:02:50 AM
View recordUser #18 mention Joseph Nitzsche mentioned you in a post · 10/11/2025, 10:02:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/737" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/737" ); 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/737"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/737"
)
notification = res.json() Response
{
"id": 737,
"userId": 18,
"type": "mention",
"title": "Joseph Nitzsche mentioned you in a post",
"body": "Attero torqueo decipio volva cohors damno inflammatio paulatim nemo.",
"isRead": false,
"link": "https://example.com/mention/QCJRpPwO",
"createdAt": "2025-10-11T10:02:50.467Z"
}