Activity #1326
User #120 mention Roma Durgan mentioned you in a post
7/26/2025, 9:48:36 PM
Overview
notifications / #1326
User #120 mention Roma Durgan mentioned you in a post
7/26/2025, 9:48:36 PM
User #120 mention Roma Durgan mentioned you in a post
7/26/2025, 9:48:36 PM
View recordUser #120 mention Roma Durgan mentioned you in a post · 7/26/2025, 9:48:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1326" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1326" ); 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/1326"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1326"
)
notification = res.json() Response
{
"id": 1326,
"userId": 120,
"type": "mention",
"title": "Roma Durgan mentioned you in a post",
"body": "Maxime aggredior adduco vilitas subnecto caput spargo utroque.",
"isRead": false,
"link": "https://example.com/mention/7Zr4RrGx",
"createdAt": "2025-07-26T21:48:36.678Z"
}