Activity #384
User #70 reply Jensen Bashirian replied to your comment
5/28/2025, 3:29:02 PM
Overview
notifications / #384
User #70 reply Jensen Bashirian replied to your comment
5/28/2025, 3:29:02 PM
User #70 reply Jensen Bashirian replied to your comment
5/28/2025, 3:29:02 PM
View recordUser #70 reply Jensen Bashirian replied to your comment · 5/28/2025, 3:29:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/384" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/384" ); 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/384"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/384"
)
notification = res.json() Response
{
"id": 384,
"userId": 70,
"type": "reply",
"title": "Jensen Bashirian replied to your comment",
"body": "Similique tener dolores.",
"isRead": false,
"link": "https://example.com/reply/8TG-kuRd",
"createdAt": "2025-05-28T15:29:02.316Z"
}