Activity #1122
User #22 like Jonathan Howe liked your post
3/14/2026, 3:07:51 AM
Overview
notifications / #1122
User #22 like Jonathan Howe liked your post
3/14/2026, 3:07:51 AM
User #22 like Jonathan Howe liked your post
3/14/2026, 3:07:51 AM
View recordUser #22 like Jonathan Howe liked your post · 3/14/2026, 3:07:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1122" ); 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/1122"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1122"
)
notification = res.json() Response
{
"id": 1122,
"userId": 22,
"type": "like",
"title": "Jonathan Howe liked your post",
"body": "Tyrannus verus credo auctus.",
"isRead": true,
"link": null,
"createdAt": "2026-03-14T03:07:51.914Z"
}