Activity #452
User #84 reply Audreanne Will replied to your comment
12/26/2025, 1:50:11 AM
Overview
notifications / #452
User #84 reply Audreanne Will replied to your comment
12/26/2025, 1:50:11 AM
User #84 reply Audreanne Will replied to your comment
12/26/2025, 1:50:11 AM
View recordUser #84 reply Audreanne Will replied to your comment · 12/26/2025, 1:50:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/452" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/452" ); 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/452"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/452"
)
notification = res.json() Response
{
"id": 452,
"userId": 84,
"type": "reply",
"title": "Audreanne Will replied to your comment",
"body": "Tam caterva tricesimus cedo quam porro.",
"isRead": false,
"link": null,
"createdAt": "2025-12-26T01:50:11.810Z"
}