Activity #110
User #194 reply Jesse Kiehn replied to your comment
6/5/2025, 8:49:10 AM
Overview
notifications / #110
User #194 reply Jesse Kiehn replied to your comment
6/5/2025, 8:49:10 AM
User #194 reply Jesse Kiehn replied to your comment
6/5/2025, 8:49:10 AM
View recordUser #194 reply Jesse Kiehn replied to your comment · 6/5/2025, 8:49:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/110" ); 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/110"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/110"
)
notification = res.json() Response
{
"id": 110,
"userId": 194,
"type": "reply",
"title": "Jesse Kiehn replied to your comment",
"body": "Caterva recusandae curatio cauda curtus defaeco auditor uberrime quam.",
"isRead": false,
"link": "https://example.com/reply/QOQb2jT3",
"createdAt": "2025-06-05T08:49:10.833Z"
}