Activity #143
User #245 reply Michaela Feeney replied to your comment
8/26/2025, 11:18:20 PM
Overview
notifications / #143
User #245 reply Michaela Feeney replied to your comment
8/26/2025, 11:18:20 PM
User #245 reply Michaela Feeney replied to your comment
8/26/2025, 11:18:20 PM
View recordUser #245 reply Michaela Feeney replied to your comment · 8/26/2025, 11:18:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/143" ); 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/143"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/143"
)
notification = res.json() Response
{
"id": 143,
"userId": 245,
"type": "reply",
"title": "Michaela Feeney replied to your comment",
"body": "Sonitus denego velut volo absum somniculosus.",
"isRead": false,
"link": null,
"createdAt": "2025-08-26T23:18:20.142Z"
}