Activity #535
User #150 reply Audreanne Will replied to your comment
10/19/2025, 11:10:00 AM
Overview
notifications / #535
User #150 reply Audreanne Will replied to your comment
10/19/2025, 11:10:00 AM
User #150 reply Audreanne Will replied to your comment
10/19/2025, 11:10:00 AM
View recordUser #150 reply Audreanne Will replied to your comment · 10/19/2025, 11:10:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/535" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/535" ); 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/535"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/535"
)
notification = res.json() Response
{
"id": 535,
"userId": 150,
"type": "reply",
"title": "Audreanne Will replied to your comment",
"body": "Arbor desino basium.",
"isRead": true,
"link": "https://example.com/reply/YvmLEoW1",
"createdAt": "2025-10-19T11:10:00.086Z"
}