Activity #1939
User #236 like Jonas Rath liked your post
2/5/2026, 4:32:06 AM
Overview
notifications / #1939
User #236 like Jonas Rath liked your post
2/5/2026, 4:32:06 AM
User #236 like Jonas Rath liked your post
2/5/2026, 4:32:06 AM
View recordUser #236 like Jonas Rath liked your post · 2/5/2026, 4:32:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1939" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1939" ); 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/1939"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1939"
)
notification = res.json() Response
{
"id": 1939,
"userId": 236,
"type": "like",
"title": "Jonas Rath liked your post",
"body": "Suffoco arbor uberrime suasoria caelestis curto crastinus delicate.",
"isRead": false,
"link": "https://example.com/like/ZpAEQkzq",
"createdAt": "2026-02-05T04:32:06.478Z"
}