Activity #281
User #202 like Brad Wisoky liked your post
10/21/2025, 9:29:14 PM
Overview
notifications / #281
User #202 like Brad Wisoky liked your post
10/21/2025, 9:29:14 PM
User #202 like Brad Wisoky liked your post
10/21/2025, 9:29:14 PM
View recordUser #202 like Brad Wisoky liked your post · 10/21/2025, 9:29:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/281" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/281" ); 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/281"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/281"
)
notification = res.json() Response
{
"id": 281,
"userId": 202,
"type": "like",
"title": "Brad Wisoky liked your post",
"body": "Cibo talis viscus.",
"isRead": false,
"link": null,
"createdAt": "2025-10-21T21:29:14.296Z"
}