Activity #1407
User #95 reply Rubye Emmerich replied to your comment
5/26/2025, 12:40:46 AM
Overview
notifications / #1407
User #95 reply Rubye Emmerich replied to your comment
5/26/2025, 12:40:46 AM
User #95 reply Rubye Emmerich replied to your comment
5/26/2025, 12:40:46 AM
View recordUser #95 reply Rubye Emmerich replied to your comment · 5/26/2025, 12:40:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1407" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1407" ); 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/1407"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1407"
)
notification = res.json() Response
{
"id": 1407,
"userId": 95,
"type": "reply",
"title": "Rubye Emmerich replied to your comment",
"body": "Ascisco cinis audacia quisquam.",
"isRead": false,
"link": "https://example.com/reply/bPIhsrFx",
"createdAt": "2025-05-26T00:40:46.956Z"
}