Activity #1352
User #202 like Adan Weber liked your post
1/27/2026, 5:33:04 AM
Overview
notifications / #1352
User #202 like Adan Weber liked your post
1/27/2026, 5:33:04 AM
User #202 like Adan Weber liked your post
1/27/2026, 5:33:04 AM
View recordUser #202 like Adan Weber liked your post · 1/27/2026, 5:33:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1352" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1352" ); 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/1352"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1352"
)
notification = res.json() Response
{
"id": 1352,
"userId": 202,
"type": "like",
"title": "Adan Weber liked your post",
"body": "Attollo eum bene voluptas taedium ut tactus.",
"isRead": false,
"link": "https://example.com/like/qMQj_YSE",
"createdAt": "2026-01-27T05:33:04.220Z"
}