Activity #1338
User #242 reply Mateo Gerlach replied to your comment
9/21/2025, 9:43:27 PM
Overview
notifications / #1338
User #242 reply Mateo Gerlach replied to your comment
9/21/2025, 9:43:27 PM
User #242 reply Mateo Gerlach replied to your comment
9/21/2025, 9:43:27 PM
View recordUser #242 reply Mateo Gerlach replied to your comment · 9/21/2025, 9:43:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1338" ); 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/1338"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1338"
)
notification = res.json() Response
{
"id": 1338,
"userId": 242,
"type": "reply",
"title": "Mateo Gerlach replied to your comment",
"body": "Tremo curia acerbitas paulatim defleo utrum.",
"isRead": true,
"link": "https://example.com/reply/pNNh4lDA",
"createdAt": "2025-09-21T21:43:27.679Z"
}