Activity #80
User #102 reply Karlee Hudson-Turner replied to your comment
4/15/2026, 11:04:28 PM
Overview
notifications / #80
User #102 reply Karlee Hudson-Turner replied to your comment
4/15/2026, 11:04:28 PM
User #102 reply Karlee Hudson-Turner replied to your comment
4/15/2026, 11:04:28 PM
View recordUser #102 reply Karlee Hudson-Turner replied to your comment · 4/15/2026, 11:04:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/80" ); 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/80"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/80"
)
notification = res.json() Response
{
"id": 80,
"userId": 102,
"type": "reply",
"title": "Karlee Hudson-Turner replied to your comment",
"body": "Vulgus acsi benevolentia.",
"isRead": true,
"link": "https://example.com/reply/wniGYPiq",
"createdAt": "2026-04-15T23:04:28.424Z"
}