Activity #1701
User #122 reply Cruz Okuneva replied to your comment
11/3/2025, 1:19:00 AM
Overview
notifications / #1701
User #122 reply Cruz Okuneva replied to your comment
11/3/2025, 1:19:00 AM
User #122 reply Cruz Okuneva replied to your comment
11/3/2025, 1:19:00 AM
View recordUser #122 reply Cruz Okuneva replied to your comment · 11/3/2025, 1:19:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1701" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1701" ); 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/1701"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1701"
)
notification = res.json() Response
{
"id": 1701,
"userId": 122,
"type": "reply",
"title": "Cruz Okuneva replied to your comment",
"body": "Enim facilis tantum comis adsuesco suppono cornu cicuta adsum venio.",
"isRead": false,
"link": "https://example.com/reply/TEFPVbte",
"createdAt": "2025-11-03T01:19:00.065Z"
}