Activity #374
User #154 like Terence Lemke liked your post
11/21/2025, 2:39:05 PM
Overview
notifications / #374
User #154 like Terence Lemke liked your post
11/21/2025, 2:39:05 PM
User #154 like Terence Lemke liked your post
11/21/2025, 2:39:05 PM
View recordUser #154 like Terence Lemke liked your post · 11/21/2025, 2:39:05 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/374" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/374" ); 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/374"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/374"
)
notification = res.json() Response
{
"id": 374,
"userId": 154,
"type": "like",
"title": "Terence Lemke liked your post",
"body": "Aperiam defetiscor beatus claudeo conitor degusto.",
"isRead": true,
"link": "https://example.com/like/Xn67xGAZ",
"createdAt": "2025-11-21T14:39:05.334Z"
}