Activity #885
User #21 reply Hermina West replied to your comment
8/3/2025, 12:36:28 PM
Overview
notifications / #885
User #21 reply Hermina West replied to your comment
8/3/2025, 12:36:28 PM
User #21 reply Hermina West replied to your comment
8/3/2025, 12:36:28 PM
View recordUser #21 reply Hermina West replied to your comment · 8/3/2025, 12:36:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/885" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/885" ); 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/885"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/885"
)
notification = res.json() Response
{
"id": 885,
"userId": 21,
"type": "reply",
"title": "Hermina West replied to your comment",
"body": "Pax arma appositus tolero adnuo iusto cura attollo.",
"isRead": true,
"link": "https://example.com/reply/yZHMzDLX",
"createdAt": "2025-08-03T12:36:28.439Z"
}