Activity #367
User #131 mention Stephan Heller mentioned you in a post
7/9/2025, 2:12:47 PM
Overview
notifications / #367
User #131 mention Stephan Heller mentioned you in a post
7/9/2025, 2:12:47 PM
User #131 mention Stephan Heller mentioned you in a post
7/9/2025, 2:12:47 PM
View recordUser #131 mention Stephan Heller mentioned you in a post · 7/9/2025, 2:12:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/367" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/367" ); 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/367"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/367"
)
notification = res.json() Response
{
"id": 367,
"userId": 131,
"type": "mention",
"title": "Stephan Heller mentioned you in a post",
"body": "Uter spiritus aiunt.",
"isRead": true,
"link": "https://example.com/mention/xT2lfQIi",
"createdAt": "2025-07-09T14:12:47.820Z"
}