Activity #1824
User #247 like Kennith Hahn liked your post
8/9/2025, 12:38:10 AM
Overview
notifications / #1824
User #247 like Kennith Hahn liked your post
8/9/2025, 12:38:10 AM
User #247 like Kennith Hahn liked your post
8/9/2025, 12:38:10 AM
View recordUser #247 like Kennith Hahn liked your post · 8/9/2025, 12:38:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1824" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1824" ); 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/1824"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1824"
)
notification = res.json() Response
{
"id": 1824,
"userId": 247,
"type": "like",
"title": "Kennith Hahn liked your post",
"body": "Ut unde sordeo subnecto tripudio succedo tabella.",
"isRead": false,
"link": null,
"createdAt": "2025-08-09T00:38:10.222Z"
}