Activity #893
User #136 mention Jo Haag-Mayer mentioned you in a post
6/9/2025, 4:55:48 AM
Overview
notifications / #893
User #136 mention Jo Haag-Mayer mentioned you in a post
6/9/2025, 4:55:48 AM
User #136 mention Jo Haag-Mayer mentioned you in a post
6/9/2025, 4:55:48 AM
View recordUser #136 mention Jo Haag-Mayer mentioned you in a post · 6/9/2025, 4:55:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/893" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/893" ); 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/893"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/893"
)
notification = res.json() Response
{
"id": 893,
"userId": 136,
"type": "mention",
"title": "Jo Haag-Mayer mentioned you in a post",
"body": "Tutis at sponte optio.",
"isRead": true,
"link": "https://example.com/mention/i502aizu",
"createdAt": "2025-06-09T04:55:48.297Z"
}