Activity #1794
User #77 reply Ludwig Stiedemann replied to your comment
6/11/2025, 12:57:11 PM
Overview
notifications / #1794
User #77 reply Ludwig Stiedemann replied to your comment
6/11/2025, 12:57:11 PM
User #77 reply Ludwig Stiedemann replied to your comment
6/11/2025, 12:57:11 PM
View recordUser #77 reply Ludwig Stiedemann replied to your comment · 6/11/2025, 12:57:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1794" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1794" ); 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/1794"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1794"
)
notification = res.json() Response
{
"id": 1794,
"userId": 77,
"type": "reply",
"title": "Ludwig Stiedemann replied to your comment",
"body": "Sunt cerno catena arcus.",
"isRead": false,
"link": "https://example.com/reply/78CvNgh6",
"createdAt": "2025-06-11T12:57:11.476Z"
}