Activity #1087
User #95 reply Joseph Nitzsche replied to your comment
11/7/2025, 10:23:15 AM
Overview
notifications / #1087
User #95 reply Joseph Nitzsche replied to your comment
11/7/2025, 10:23:15 AM
User #95 reply Joseph Nitzsche replied to your comment
11/7/2025, 10:23:15 AM
View recordUser #95 reply Joseph Nitzsche replied to your comment · 11/7/2025, 10:23:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1087" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1087" ); 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/1087"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1087"
)
notification = res.json() Response
{
"id": 1087,
"userId": 95,
"type": "reply",
"title": "Joseph Nitzsche replied to your comment",
"body": "Suggero voluptatum inventore aliquid termes desparatus tristis aqua deficio territo.",
"isRead": true,
"link": "https://example.com/reply/0dXYxBht",
"createdAt": "2025-11-07T10:23:15.656Z"
}