Activity #1346
User #152 reply Gavin Lowe replied to your comment
8/28/2025, 6:13:27 PM
Overview
notifications / #1346
User #152 reply Gavin Lowe replied to your comment
8/28/2025, 6:13:27 PM
User #152 reply Gavin Lowe replied to your comment
8/28/2025, 6:13:27 PM
View recordUser #152 reply Gavin Lowe replied to your comment · 8/28/2025, 6:13:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1346" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1346" ); 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/1346"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1346"
)
notification = res.json() Response
{
"id": 1346,
"userId": 152,
"type": "reply",
"title": "Gavin Lowe replied to your comment",
"body": "Deorsum laborum officiis.",
"isRead": true,
"link": null,
"createdAt": "2025-08-28T18:13:27.026Z"
}