Activity #259
User #16 reply Jennifer Stoltenberg replied to your comment
12/12/2025, 9:56:23 PM
Overview
notifications / #259
User #16 reply Jennifer Stoltenberg replied to your comment
12/12/2025, 9:56:23 PM
User #16 reply Jennifer Stoltenberg replied to your comment
12/12/2025, 9:56:23 PM
View recordUser #16 reply Jennifer Stoltenberg replied to your comment · 12/12/2025, 9:56:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/259" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/259" ); 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/259"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/259"
)
notification = res.json() Response
{
"id": 259,
"userId": 16,
"type": "reply",
"title": "Jennifer Stoltenberg replied to your comment",
"body": "Terga audeo adnuo adsuesco delibero rerum cribro.",
"isRead": true,
"link": "https://example.com/reply/fTfj5NX2",
"createdAt": "2025-12-12T21:56:23.334Z"
}