Activity #1137
User #234 mention Jennifer Stoltenberg mentioned you in a post
9/5/2025, 7:32:23 PM
Overview
notifications / #1137
User #234 mention Jennifer Stoltenberg mentioned you in a post
9/5/2025, 7:32:23 PM
User #234 mention Jennifer Stoltenberg mentioned you in a post
9/5/2025, 7:32:23 PM
View recordUser #234 mention Jennifer Stoltenberg mentioned you in a post · 9/5/2025, 7:32:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1137" ); 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/1137"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1137"
)
notification = res.json() Response
{
"id": 1137,
"userId": 234,
"type": "mention",
"title": "Jennifer Stoltenberg mentioned you in a post",
"body": "Vetus suffragium tamisium demum amoveo.",
"isRead": true,
"link": "https://example.com/mention/XIifSP8h",
"createdAt": "2025-09-05T19:32:23.692Z"
}