Activity #810
User #35 reply Wade Upton replied to your comment
6/21/2025, 12:47:55 AM
Overview
notifications / #810
User #35 reply Wade Upton replied to your comment
6/21/2025, 12:47:55 AM
User #35 reply Wade Upton replied to your comment
6/21/2025, 12:47:55 AM
View recordUser #35 reply Wade Upton replied to your comment · 6/21/2025, 12:47:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/810" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/810" ); 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/810"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/810"
)
notification = res.json() Response
{
"id": 810,
"userId": 35,
"type": "reply",
"title": "Wade Upton replied to your comment",
"body": "Suscipio convoco vitium denuo teneo ventito crudelis depereo artificiose comminor.",
"isRead": false,
"link": "https://example.com/reply/Adxah3rl",
"createdAt": "2025-06-21T00:47:55.317Z"
}