Activity #427
User #12 reply Kevon Dickinson replied to your comment
6/29/2025, 8:23:25 AM
Overview
notifications / #427
User #12 reply Kevon Dickinson replied to your comment
6/29/2025, 8:23:25 AM
User #12 reply Kevon Dickinson replied to your comment
6/29/2025, 8:23:25 AM
View recordUser #12 reply Kevon Dickinson replied to your comment · 6/29/2025, 8:23:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/427" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/427" ); 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/427"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/427"
)
notification = res.json() Response
{
"id": 427,
"userId": 12,
"type": "reply",
"title": "Kevon Dickinson replied to your comment",
"body": "Stella quasi decet decimus.",
"isRead": true,
"link": null,
"createdAt": "2025-06-29T08:23:25.629Z"
}