Activity #1551
User #74 reply Merl Jenkins replied to your comment
10/7/2025, 2:58:51 PM
Overview
notifications / #1551
User #74 reply Merl Jenkins replied to your comment
10/7/2025, 2:58:51 PM
User #74 reply Merl Jenkins replied to your comment
10/7/2025, 2:58:51 PM
View recordUser #74 reply Merl Jenkins replied to your comment · 10/7/2025, 2:58:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1551" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1551" ); 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/1551"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1551"
)
notification = res.json() Response
{
"id": 1551,
"userId": 74,
"type": "reply",
"title": "Merl Jenkins replied to your comment",
"body": "Cito contigo ipsum suffoco.",
"isRead": true,
"link": "https://example.com/reply/XJoir4Um",
"createdAt": "2025-10-07T14:58:51.798Z"
}