Activity #1501
User #105 reply Ludwig Stiedemann replied to your comment
8/15/2025, 4:44:12 AM
Overview
notifications / #1501
User #105 reply Ludwig Stiedemann replied to your comment
8/15/2025, 4:44:12 AM
User #105 reply Ludwig Stiedemann replied to your comment
8/15/2025, 4:44:12 AM
View recordUser #105 reply Ludwig Stiedemann replied to your comment · 8/15/2025, 4:44:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1501" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1501" ); 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/1501"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1501"
)
notification = res.json() Response
{
"id": 1501,
"userId": 105,
"type": "reply",
"title": "Ludwig Stiedemann replied to your comment",
"body": "Bestia universe dens subseco laboriosam textilis angelus.",
"isRead": false,
"link": "https://example.com/reply/sIjP3kBY",
"createdAt": "2025-08-15T04:44:12.991Z"
}