Activity #1233
User #114 like Stephan Heller liked your post
9/22/2025, 10:42:34 PM
Overview
notifications / #1233
User #114 like Stephan Heller liked your post
9/22/2025, 10:42:34 PM
User #114 like Stephan Heller liked your post
9/22/2025, 10:42:34 PM
View recordUser #114 like Stephan Heller liked your post · 9/22/2025, 10:42:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1233" ); 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/1233"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1233"
)
notification = res.json() Response
{
"id": 1233,
"userId": 114,
"type": "like",
"title": "Stephan Heller liked your post",
"body": "Bardus crux aliquam autem arbitro.",
"isRead": false,
"link": null,
"createdAt": "2025-09-22T22:42:34.703Z"
}