Activity #127
User #103 reply Ethyl Auer replied to your comment
8/30/2025, 7:37:18 PM
Overview
notifications / #127
User #103 reply Ethyl Auer replied to your comment
8/30/2025, 7:37:18 PM
User #103 reply Ethyl Auer replied to your comment
8/30/2025, 7:37:18 PM
View recordUser #103 reply Ethyl Auer replied to your comment · 8/30/2025, 7:37:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/127" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/127" ); 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/127"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/127"
)
notification = res.json() Response
{
"id": 127,
"userId": 103,
"type": "reply",
"title": "Ethyl Auer replied to your comment",
"body": "Tracto textilis decumbo antepono universe aiunt amet vestigium nihil.",
"isRead": false,
"link": "https://example.com/reply/RplTEkO3",
"createdAt": "2025-08-30T19:37:18.870Z"
}