Activity #978
User #245 reply Sheridan Turcotte replied to your comment
9/14/2025, 7:34:14 AM
Overview
notifications / #978
User #245 reply Sheridan Turcotte replied to your comment
9/14/2025, 7:34:14 AM
User #245 reply Sheridan Turcotte replied to your comment
9/14/2025, 7:34:14 AM
View recordUser #245 reply Sheridan Turcotte replied to your comment · 9/14/2025, 7:34:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/978" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/978" ); 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/978"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/978"
)
notification = res.json() Response
{
"id": 978,
"userId": 245,
"type": "reply",
"title": "Sheridan Turcotte replied to your comment",
"body": "Ambitus ipsa bene taedium testimonium deleniti modi termes.",
"isRead": false,
"link": "https://example.com/reply/F-mj8tPk",
"createdAt": "2025-09-14T07:34:14.214Z"
}