Activity #157
User #44 reply Jennifer Hoeger replied to your comment
3/27/2026, 10:05:00 AM
Overview
notifications / #157
User #44 reply Jennifer Hoeger replied to your comment
3/27/2026, 10:05:00 AM
User #44 reply Jennifer Hoeger replied to your comment
3/27/2026, 10:05:00 AM
View recordUser #44 reply Jennifer Hoeger replied to your comment · 3/27/2026, 10:05:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/157" ); 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/157"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/157"
)
notification = res.json() Response
{
"id": 157,
"userId": 44,
"type": "reply",
"title": "Jennifer Hoeger replied to your comment",
"body": "Brevis tactus beneficium dolorem trans crux absorbeo creator.",
"isRead": true,
"link": "https://example.com/reply/0xKqiRJg",
"createdAt": "2026-03-27T10:05:00.956Z"
}