Activity #1964
User #175 like Lemuel Jast liked your post
9/30/2025, 2:50:04 PM
Overview
notifications / #1964
User #175 like Lemuel Jast liked your post
9/30/2025, 2:50:04 PM
User #175 like Lemuel Jast liked your post
9/30/2025, 2:50:04 PM
View recordUser #175 like Lemuel Jast liked your post · 9/30/2025, 2:50:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1964" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1964" ); 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/1964"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1964"
)
notification = res.json() Response
{
"id": 1964,
"userId": 175,
"type": "like",
"title": "Lemuel Jast liked your post",
"body": "Tergo thermae aro vae caste virtus cibus administratio advenio vir.",
"isRead": true,
"link": "https://example.com/like/BAKdQcoq",
"createdAt": "2025-09-30T14:50:04.344Z"
}