Activity #907
User #178 like Terence Lemke liked your post
7/29/2025, 8:31:53 AM
Overview
notifications / #907
User #178 like Terence Lemke liked your post
7/29/2025, 8:31:53 AM
User #178 like Terence Lemke liked your post
7/29/2025, 8:31:53 AM
View recordUser #178 like Terence Lemke liked your post · 7/29/2025, 8:31:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/907" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/907" ); 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/907"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/907"
)
notification = res.json() Response
{
"id": 907,
"userId": 178,
"type": "like",
"title": "Terence Lemke liked your post",
"body": "Stabilis ad tego subnecto acervus depulso terra viscus asperiores vos.",
"isRead": false,
"link": "https://example.com/like/Depp5H1W",
"createdAt": "2025-07-29T08:31:53.751Z"
}