Activity #1960
User #108 reply Mateo Gerlach replied to your comment
11/23/2025, 7:00:04 AM
Overview
notifications / #1960
User #108 reply Mateo Gerlach replied to your comment
11/23/2025, 7:00:04 AM
User #108 reply Mateo Gerlach replied to your comment
11/23/2025, 7:00:04 AM
View recordUser #108 reply Mateo Gerlach replied to your comment · 11/23/2025, 7:00:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1960" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1960" ); 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/1960"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1960"
)
notification = res.json() Response
{
"id": 1960,
"userId": 108,
"type": "reply",
"title": "Mateo Gerlach replied to your comment",
"body": "Carmen sono accedo inventore spero.",
"isRead": true,
"link": "https://example.com/reply/9fS0Cz8w",
"createdAt": "2025-11-23T07:00:04.385Z"
}