Activity #16
User #102 reply Oran Torphy replied to your comment
11/4/2025, 7:08:04 AM
Overview
notifications / #16
User #102 reply Oran Torphy replied to your comment
11/4/2025, 7:08:04 AM
User #102 reply Oran Torphy replied to your comment
11/4/2025, 7:08:04 AM
View recordUser #102 reply Oran Torphy replied to your comment · 11/4/2025, 7:08:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/16" ); 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/16"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/16"
)
notification = res.json() Response
{
"id": 16,
"userId": 102,
"type": "reply",
"title": "Oran Torphy replied to your comment",
"body": "Absens textus cura vergo aestivus thymum vinculum sopor rem.",
"isRead": false,
"link": "https://example.com/reply/Vhppekgj",
"createdAt": "2025-11-04T07:08:04.900Z"
}