Activity #437
User #109 mention Jennifer Stoltenberg mentioned you in a post
2/18/2026, 7:25:31 PM
Overview
notifications / #437
User #109 mention Jennifer Stoltenberg mentioned you in a post
2/18/2026, 7:25:31 PM
User #109 mention Jennifer Stoltenberg mentioned you in a post
2/18/2026, 7:25:31 PM
View recordUser #109 mention Jennifer Stoltenberg mentioned you in a post · 2/18/2026, 7:25:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/437" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/437" ); 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/437"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/437"
)
notification = res.json() Response
{
"id": 437,
"userId": 109,
"type": "mention",
"title": "Jennifer Stoltenberg mentioned you in a post",
"body": "Solio conculco caritas sonitus synagoga architecto.",
"isRead": true,
"link": "https://example.com/mention/V9pB1O30",
"createdAt": "2026-02-18T19:25:31.366Z"
}