Activity #357
User #14 reply Eveline Emard replied to your comment
1/15/2026, 11:17:43 PM
Overview
notifications / #357
User #14 reply Eveline Emard replied to your comment
1/15/2026, 11:17:43 PM
User #14 reply Eveline Emard replied to your comment
1/15/2026, 11:17:43 PM
View recordUser #14 reply Eveline Emard replied to your comment · 1/15/2026, 11:17:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/357" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/357" ); 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/357"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/357"
)
notification = res.json() Response
{
"id": 357,
"userId": 14,
"type": "reply",
"title": "Eveline Emard replied to your comment",
"body": "Aufero amplus comptus.",
"isRead": false,
"link": "https://example.com/reply/VPrsYhDd",
"createdAt": "2026-01-15T23:17:43.653Z"
}