Activity #1739
User #75 mention Mara Johnson mentioned you in a post
4/7/2026, 4:37:54 AM
Overview
notifications / #1739
User #75 mention Mara Johnson mentioned you in a post
4/7/2026, 4:37:54 AM
User #75 mention Mara Johnson mentioned you in a post
4/7/2026, 4:37:54 AM
View recordUser #75 mention Mara Johnson mentioned you in a post · 4/7/2026, 4:37:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1739" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1739" ); 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/1739"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1739"
)
notification = res.json() Response
{
"id": 1739,
"userId": 75,
"type": "mention",
"title": "Mara Johnson mentioned you in a post",
"body": "Aetas vereor agnosco sum contabesco auditor laboriosam deripio textus astrum.",
"isRead": true,
"link": "https://example.com/mention/T8HJoKCM",
"createdAt": "2026-04-07T04:37:54.348Z"
}