Activity #128
User #136 like Lemuel Jast liked your post
2/21/2026, 10:41:29 PM
Overview
notifications / #128
User #136 like Lemuel Jast liked your post
2/21/2026, 10:41:29 PM
User #136 like Lemuel Jast liked your post
2/21/2026, 10:41:29 PM
View recordUser #136 like Lemuel Jast liked your post · 2/21/2026, 10:41:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/128" ); 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/128"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/128"
)
notification = res.json() Response
{
"id": 128,
"userId": 136,
"type": "like",
"title": "Lemuel Jast liked your post",
"body": "Adiuvo socius capitulus nemo.",
"isRead": true,
"link": null,
"createdAt": "2026-02-21T22:41:29.720Z"
}