Activity #1974
User #78 like Terence Lemke liked your post
12/23/2025, 6:09:09 PM
Overview
notifications / #1974
User #78 like Terence Lemke liked your post
12/23/2025, 6:09:09 PM
User #78 like Terence Lemke liked your post
12/23/2025, 6:09:09 PM
View recordUser #78 like Terence Lemke liked your post · 12/23/2025, 6:09:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1974" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1974" ); 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/1974"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1974"
)
notification = res.json() Response
{
"id": 1974,
"userId": 78,
"type": "like",
"title": "Terence Lemke liked your post",
"body": "Abduco sit conicio constans abundans angustus sono cupressus.",
"isRead": false,
"link": "https://example.com/like/g6YQ1lyl",
"createdAt": "2025-12-23T18:09:09.945Z"
}