Activity #1658
User #240 reply Cassidy Price-Schimmel replied to your comment
5/11/2026, 1:00:34 AM
Overview
notifications / #1658
User #240 reply Cassidy Price-Schimmel replied to your comment
5/11/2026, 1:00:34 AM
User #240 reply Cassidy Price-Schimmel replied to your comment
5/11/2026, 1:00:34 AM
View recordUser #240 reply Cassidy Price-Schimmel replied to your comment · 5/11/2026, 1:00:34 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1658" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1658" ); 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/1658"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1658"
)
notification = res.json() Response
{
"id": 1658,
"userId": 240,
"type": "reply",
"title": "Cassidy Price-Schimmel replied to your comment",
"body": "Utrum comis veritas sumptus territo civitas ter nemo quod.",
"isRead": false,
"link": null,
"createdAt": "2026-05-11T01:00:34.159Z"
}