Activity #1270
User #103 reply Bradford Doyle replied to your comment
7/17/2025, 1:31:48 AM
Overview
notifications / #1270
User #103 reply Bradford Doyle replied to your comment
7/17/2025, 1:31:48 AM
User #103 reply Bradford Doyle replied to your comment
7/17/2025, 1:31:48 AM
View recordUser #103 reply Bradford Doyle replied to your comment · 7/17/2025, 1:31:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1270" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1270" ); 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/1270"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1270"
)
notification = res.json() Response
{
"id": 1270,
"userId": 103,
"type": "reply",
"title": "Bradford Doyle replied to your comment",
"body": "Terra cupressus super curso vallum.",
"isRead": true,
"link": "https://example.com/reply/oZ7FS89o",
"createdAt": "2025-07-17T01:31:48.452Z"
}