Activity #195
User #15 like Elva Roberts liked your post
1/16/2026, 9:27:15 AM
Overview
notifications / #195
User #15 like Elva Roberts liked your post
1/16/2026, 9:27:15 AM
User #15 like Elva Roberts liked your post
1/16/2026, 9:27:15 AM
View recordUser #15 like Elva Roberts liked your post · 1/16/2026, 9:27:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/195" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/195" ); 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/195"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/195"
)
notification = res.json() Response
{
"id": 195,
"userId": 15,
"type": "like",
"title": "Elva Roberts liked your post",
"body": "Deorsum casso complectus illum campana anser.",
"isRead": false,
"link": null,
"createdAt": "2026-01-16T09:27:15.096Z"
}