Activity #1953
User #13 reply Charlene Kuhic replied to your comment
6/20/2025, 1:24:31 AM
Overview
notifications / #1953
User #13 reply Charlene Kuhic replied to your comment
6/20/2025, 1:24:31 AM
User #13 reply Charlene Kuhic replied to your comment
6/20/2025, 1:24:31 AM
View recordUser #13 reply Charlene Kuhic replied to your comment · 6/20/2025, 1:24:31 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1953" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1953" ); 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/1953"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1953"
)
notification = res.json() Response
{
"id": 1953,
"userId": 13,
"type": "reply",
"title": "Charlene Kuhic replied to your comment",
"body": "Cado vitae circumvenio.",
"isRead": false,
"link": "https://example.com/reply/cA27iU-j",
"createdAt": "2025-06-20T01:24:31.449Z"
}