Activity #1378
User #139 mention Zachariah Herzog mentioned you in a post
11/27/2025, 10:19:56 AM
Overview
notifications / #1378
User #139 mention Zachariah Herzog mentioned you in a post
11/27/2025, 10:19:56 AM
User #139 mention Zachariah Herzog mentioned you in a post
11/27/2025, 10:19:56 AM
View recordUser #139 mention Zachariah Herzog mentioned you in a post · 11/27/2025, 10:19:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1378" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1378" ); 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/1378"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1378"
)
notification = res.json() Response
{
"id": 1378,
"userId": 139,
"type": "mention",
"title": "Zachariah Herzog mentioned you in a post",
"body": "Denique tribuo quas absens volva libero adflicto.",
"isRead": false,
"link": "https://example.com/mention/WlueS9a0",
"createdAt": "2025-11-27T10:19:56.901Z"
}