Activity #138
User #245 reply Dwight Dicki-Medhurst replied to your comment
8/6/2025, 3:40:09 AM
Overview
notifications / #138
User #245 reply Dwight Dicki-Medhurst replied to your comment
8/6/2025, 3:40:09 AM
User #245 reply Dwight Dicki-Medhurst replied to your comment
8/6/2025, 3:40:09 AM
View recordUser #245 reply Dwight Dicki-Medhurst replied to your comment · 8/6/2025, 3:40:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/138" ); 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/138"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/138"
)
notification = res.json() Response
{
"id": 138,
"userId": 245,
"type": "reply",
"title": "Dwight Dicki-Medhurst replied to your comment",
"body": "Vir trepide demo caste sonitus tabella statua alienus.",
"isRead": true,
"link": null,
"createdAt": "2025-08-06T03:40:09.717Z"
}