Activity #174
User #29 reply Gerda Streich replied to your comment
6/30/2025, 4:02:51 PM
Overview
notifications / #174
User #29 reply Gerda Streich replied to your comment
6/30/2025, 4:02:51 PM
User #29 reply Gerda Streich replied to your comment
6/30/2025, 4:02:51 PM
View recordUser #29 reply Gerda Streich replied to your comment · 6/30/2025, 4:02:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/174" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/174" ); 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/174"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/174"
)
notification = res.json() Response
{
"id": 174,
"userId": 29,
"type": "reply",
"title": "Gerda Streich replied to your comment",
"body": "Compello ipsum tabula.",
"isRead": true,
"link": "https://example.com/reply/nivO5m5A",
"createdAt": "2025-06-30T16:02:51.225Z"
}