Activity #50
User #161 reply Wiley Rodriguez replied to your comment
8/29/2025, 2:53:14 PM
Overview
notifications / #50
User #161 reply Wiley Rodriguez replied to your comment
8/29/2025, 2:53:14 PM
User #161 reply Wiley Rodriguez replied to your comment
8/29/2025, 2:53:14 PM
View recordUser #161 reply Wiley Rodriguez replied to your comment · 8/29/2025, 2:53:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/50" ); 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/50"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/50"
)
notification = res.json() Response
{
"id": 50,
"userId": 161,
"type": "reply",
"title": "Wiley Rodriguez replied to your comment",
"body": "Pauper aptus tergiversatio termes.",
"isRead": true,
"link": "https://example.com/reply/ssYNWmt-",
"createdAt": "2025-08-29T14:53:14.529Z"
}