Activity #1604
User #165 like Allan Buckridge liked your post
4/9/2026, 1:56:49 PM
Overview
notifications / #1604
User #165 like Allan Buckridge liked your post
4/9/2026, 1:56:49 PM
User #165 like Allan Buckridge liked your post
4/9/2026, 1:56:49 PM
View recordUser #165 like Allan Buckridge liked your post · 4/9/2026, 1:56:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1604" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1604" ); 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/1604"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1604"
)
notification = res.json() Response
{
"id": 1604,
"userId": 165,
"type": "like",
"title": "Allan Buckridge liked your post",
"body": "Victoria vomito adulescens vado velum crux super cervus coniuratio.",
"isRead": false,
"link": "https://example.com/like/80VrIUIy",
"createdAt": "2026-04-09T13:56:49.027Z"
}