Activity #214
User #239 reply Marlin Goldner replied to your comment
2/22/2026, 5:55:29 PM
Overview
notifications / #214
User #239 reply Marlin Goldner replied to your comment
2/22/2026, 5:55:29 PM
User #239 reply Marlin Goldner replied to your comment
2/22/2026, 5:55:29 PM
View recordUser #239 reply Marlin Goldner replied to your comment · 2/22/2026, 5:55:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/214" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/214" ); 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/214"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/214"
)
notification = res.json() Response
{
"id": 214,
"userId": 239,
"type": "reply",
"title": "Marlin Goldner replied to your comment",
"body": "Agnosco cervus assumenda compono virga defluo demens ago aspicio bis.",
"isRead": false,
"link": "https://example.com/reply/9AhqBNvO",
"createdAt": "2026-02-22T17:55:29.678Z"
}