Activity #455
User #144 like Kenya Abshire liked your post
8/18/2025, 12:57:12 PM
Overview
notifications / #455
User #144 like Kenya Abshire liked your post
8/18/2025, 12:57:12 PM
User #144 like Kenya Abshire liked your post
8/18/2025, 12:57:12 PM
View recordUser #144 like Kenya Abshire liked your post · 8/18/2025, 12:57:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/455" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/455" ); 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/455"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/455"
)
notification = res.json() Response
{
"id": 455,
"userId": 144,
"type": "like",
"title": "Kenya Abshire liked your post",
"body": "Officia summa voluptas velit conqueror usus absorbeo condico depopulo.",
"isRead": true,
"link": null,
"createdAt": "2025-08-18T12:57:12.331Z"
}