Activity #1837
User #7 like Raheem Kovacek liked your post
2/2/2026, 3:10:18 AM
Overview
notifications / #1837
User #7 like Raheem Kovacek liked your post
2/2/2026, 3:10:18 AM
User #7 like Raheem Kovacek liked your post
2/2/2026, 3:10:18 AM
View recordUser #7 like Raheem Kovacek liked your post · 2/2/2026, 3:10:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1837" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1837" ); 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/1837"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1837"
)
notification = res.json() Response
{
"id": 1837,
"userId": 7,
"type": "like",
"title": "Raheem Kovacek liked your post",
"body": "Accusantium vestigium magnam vomica coniecto vos stipes sed clamo cinis.",
"isRead": true,
"link": "https://example.com/like/BTLKCcnd",
"createdAt": "2026-02-02T03:10:18.303Z"
}