Activity #741
User #114 reply Sammy Schmidt replied to your comment
7/20/2025, 1:24:50 PM
Overview
notifications / #741
User #114 reply Sammy Schmidt replied to your comment
7/20/2025, 1:24:50 PM
User #114 reply Sammy Schmidt replied to your comment
7/20/2025, 1:24:50 PM
View recordUser #114 reply Sammy Schmidt replied to your comment · 7/20/2025, 1:24:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/741" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/741" ); 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/741"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/741"
)
notification = res.json() Response
{
"id": 741,
"userId": 114,
"type": "reply",
"title": "Sammy Schmidt replied to your comment",
"body": "Caute assentator certe nobis utroque toties vilis.",
"isRead": false,
"link": "https://example.com/reply/0t9G0w-Y",
"createdAt": "2025-07-20T13:24:50.987Z"
}