Activity #774
User #226 reply Jadon Nicolas replied to your comment
8/26/2025, 8:57:37 AM
Overview
notifications / #774
User #226 reply Jadon Nicolas replied to your comment
8/26/2025, 8:57:37 AM
User #226 reply Jadon Nicolas replied to your comment
8/26/2025, 8:57:37 AM
View recordUser #226 reply Jadon Nicolas replied to your comment · 8/26/2025, 8:57:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/774" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/774" ); 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/774"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/774"
)
notification = res.json() Response
{
"id": 774,
"userId": 226,
"type": "reply",
"title": "Jadon Nicolas replied to your comment",
"body": "Stillicidium adicio deprimo colo creptio vix.",
"isRead": true,
"link": null,
"createdAt": "2025-08-26T08:57:37.415Z"
}