Activity #647
User #97 reply Jennifer Stoltenberg replied to your comment
9/21/2025, 12:37:10 PM
Overview
notifications / #647
User #97 reply Jennifer Stoltenberg replied to your comment
9/21/2025, 12:37:10 PM
User #97 reply Jennifer Stoltenberg replied to your comment
9/21/2025, 12:37:10 PM
View recordUser #97 reply Jennifer Stoltenberg replied to your comment · 9/21/2025, 12:37:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/647" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/647" ); 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/647"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/647"
)
notification = res.json() Response
{
"id": 647,
"userId": 97,
"type": "reply",
"title": "Jennifer Stoltenberg replied to your comment",
"body": "Supra cinis attonbitus beatae spiculum crastinus territo.",
"isRead": true,
"link": "https://example.com/reply/Psj8d5uo",
"createdAt": "2025-09-21T12:37:10.197Z"
}