Activity #105
User #235 reply Adan Weber replied to your comment
10/30/2025, 1:33:07 AM
Overview
notifications / #105
User #235 reply Adan Weber replied to your comment
10/30/2025, 1:33:07 AM
User #235 reply Adan Weber replied to your comment
10/30/2025, 1:33:07 AM
View recordUser #235 reply Adan Weber replied to your comment · 10/30/2025, 1:33:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/105" ); 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/105"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/105"
)
notification = res.json() Response
{
"id": 105,
"userId": 235,
"type": "reply",
"title": "Adan Weber replied to your comment",
"body": "Degenero teres timidus paulatim volup careo.",
"isRead": false,
"link": "https://example.com/reply/RECyjx8N",
"createdAt": "2025-10-30T01:33:07.262Z"
}