Activity #1131
User #126 reply Jaylon Conroy replied to your comment
7/13/2025, 10:15:13 PM
Overview
notifications / #1131
User #126 reply Jaylon Conroy replied to your comment
7/13/2025, 10:15:13 PM
User #126 reply Jaylon Conroy replied to your comment
7/13/2025, 10:15:13 PM
View recordUser #126 reply Jaylon Conroy replied to your comment · 7/13/2025, 10:15:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1131" ); 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/1131"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1131"
)
notification = res.json() Response
{
"id": 1131,
"userId": 126,
"type": "reply",
"title": "Jaylon Conroy replied to your comment",
"body": "Crepusculum vinum artificiose consuasor magni asper.",
"isRead": false,
"link": "https://example.com/reply/PWnERbdv",
"createdAt": "2025-07-13T22:15:13.546Z"
}