Activity #1390
User #127 reply Jameson Considine replied to your comment
7/22/2025, 7:42:03 AM
Overview
notifications / #1390
User #127 reply Jameson Considine replied to your comment
7/22/2025, 7:42:03 AM
User #127 reply Jameson Considine replied to your comment
7/22/2025, 7:42:03 AM
View recordUser #127 reply Jameson Considine replied to your comment · 7/22/2025, 7:42:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1390" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1390" ); 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/1390"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1390"
)
notification = res.json() Response
{
"id": 1390,
"userId": 127,
"type": "reply",
"title": "Jameson Considine replied to your comment",
"body": "Totus vado usitas amita combibo sponte una videlicet deleniti.",
"isRead": false,
"link": "https://example.com/reply/l-LaATD6",
"createdAt": "2025-07-22T07:42:03.718Z"
}