Activity #433
User #136 reply Jennifer Hoeger replied to your comment
7/20/2025, 10:36:50 PM
Overview
notifications / #433
User #136 reply Jennifer Hoeger replied to your comment
7/20/2025, 10:36:50 PM
User #136 reply Jennifer Hoeger replied to your comment
7/20/2025, 10:36:50 PM
View recordUser #136 reply Jennifer Hoeger replied to your comment · 7/20/2025, 10:36:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/433" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/433" ); 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/433"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/433"
)
notification = res.json() Response
{
"id": 433,
"userId": 136,
"type": "reply",
"title": "Jennifer Hoeger replied to your comment",
"body": "Textilis dedico compello damnatio.",
"isRead": false,
"link": "https://example.com/reply/JaOfGEY_",
"createdAt": "2025-07-20T22:36:50.627Z"
}