Activity #1357
User #238 reply Cassidy Price-Schimmel replied to your comment
5/16/2026, 8:33:53 PM
Overview
notifications / #1357
User #238 reply Cassidy Price-Schimmel replied to your comment
5/16/2026, 8:33:53 PM
User #238 reply Cassidy Price-Schimmel replied to your comment
5/16/2026, 8:33:53 PM
View recordUser #238 reply Cassidy Price-Schimmel replied to your comment · 5/16/2026, 8:33:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1357" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1357" ); 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/1357"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1357"
)
notification = res.json() Response
{
"id": 1357,
"userId": 238,
"type": "reply",
"title": "Cassidy Price-Schimmel replied to your comment",
"body": "Defleo tamdiu deripio cruciamentum audeo magnam casus temperantia provident.",
"isRead": false,
"link": null,
"createdAt": "2026-05-16T20:33:53.042Z"
}