Activity #331
User #247 reply Melvina Reilly replied to your comment
4/20/2026, 4:41:31 AM
Overview
notifications / #331
User #247 reply Melvina Reilly replied to your comment
4/20/2026, 4:41:31 AM
User #247 reply Melvina Reilly replied to your comment
4/20/2026, 4:41:31 AM
View recordUser #247 reply Melvina Reilly replied to your comment · 4/20/2026, 4:41:31 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/331" ); 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/331"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/331"
)
notification = res.json() Response
{
"id": 331,
"userId": 247,
"type": "reply",
"title": "Melvina Reilly replied to your comment",
"body": "Error vulgus est crebro.",
"isRead": false,
"link": "https://example.com/reply/YOv6rW7_",
"createdAt": "2026-04-20T04:41:31.892Z"
}