Activity #20
User #69 reply April Kihn replied to your comment
9/11/2025, 4:43:21 AM
Overview
notifications / #20
User #69 reply April Kihn replied to your comment
9/11/2025, 4:43:21 AM
User #69 reply April Kihn replied to your comment
9/11/2025, 4:43:21 AM
View recordUser #69 reply April Kihn replied to your comment · 9/11/2025, 4:43:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/20" ); 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/20"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/20"
)
notification = res.json() Response
{
"id": 20,
"userId": 69,
"type": "reply",
"title": "April Kihn replied to your comment",
"body": "Aequus careo alo capto trado.",
"isRead": true,
"link": "https://example.com/reply/26ZupTtj",
"createdAt": "2025-09-11T04:43:21.683Z"
}