Activity #715
User #167 reply Lennie Dickinson replied to your comment
9/12/2025, 1:49:48 AM
Overview
notifications / #715
User #167 reply Lennie Dickinson replied to your comment
9/12/2025, 1:49:48 AM
User #167 reply Lennie Dickinson replied to your comment
9/12/2025, 1:49:48 AM
View recordUser #167 reply Lennie Dickinson replied to your comment · 9/12/2025, 1:49:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/715" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/715" ); 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/715"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/715"
)
notification = res.json() Response
{
"id": 715,
"userId": 167,
"type": "reply",
"title": "Lennie Dickinson replied to your comment",
"body": "Abduco decerno calamitas stella terebro animadverto campana accusantium.",
"isRead": false,
"link": null,
"createdAt": "2025-09-12T01:49:48.394Z"
}