Activity #1533
User #162 reply Chyna Kozey replied to your comment
8/12/2025, 12:25:56 AM
Overview
notifications / #1533
User #162 reply Chyna Kozey replied to your comment
8/12/2025, 12:25:56 AM
User #162 reply Chyna Kozey replied to your comment
8/12/2025, 12:25:56 AM
View recordUser #162 reply Chyna Kozey replied to your comment · 8/12/2025, 12:25:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1533" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1533" ); 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/1533"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1533"
)
notification = res.json() Response
{
"id": 1533,
"userId": 162,
"type": "reply",
"title": "Chyna Kozey replied to your comment",
"body": "Commemoro sordeo tandem summa sumo calcar enim laboriosam turpis.",
"isRead": true,
"link": null,
"createdAt": "2025-08-12T00:25:56.493Z"
}