Activity #1376
User #174 reply Gudrun Brakus replied to your comment
7/19/2025, 12:23:25 PM
Overview
notifications / #1376
User #174 reply Gudrun Brakus replied to your comment
7/19/2025, 12:23:25 PM
User #174 reply Gudrun Brakus replied to your comment
7/19/2025, 12:23:25 PM
View recordUser #174 reply Gudrun Brakus replied to your comment · 7/19/2025, 12:23:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1376" ); 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/1376"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1376"
)
notification = res.json() Response
{
"id": 1376,
"userId": 174,
"type": "reply",
"title": "Gudrun Brakus replied to your comment",
"body": "Corrumpo absum una undique vulpes.",
"isRead": true,
"link": "https://example.com/reply/XJA5Avly",
"createdAt": "2025-07-19T12:23:25.254Z"
}