Activity #1480
User #119 reply Kariane Schmitt replied to your comment
10/28/2025, 2:15:48 PM
Overview
notifications / #1480
User #119 reply Kariane Schmitt replied to your comment
10/28/2025, 2:15:48 PM
User #119 reply Kariane Schmitt replied to your comment
10/28/2025, 2:15:48 PM
View recordUser #119 reply Kariane Schmitt replied to your comment · 10/28/2025, 2:15:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1480" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1480" ); 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/1480"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1480"
)
notification = res.json() Response
{
"id": 1480,
"userId": 119,
"type": "reply",
"title": "Kariane Schmitt replied to your comment",
"body": "Angustus vindico circumvenio vulgaris accendo.",
"isRead": true,
"link": "https://example.com/reply/68Wy7Z8C",
"createdAt": "2025-10-28T14:15:48.351Z"
}