Activity #1154
User #31 like Oliver Mitchell liked your post
4/1/2026, 2:32:59 PM
Overview
notifications / #1154
User #31 like Oliver Mitchell liked your post
4/1/2026, 2:32:59 PM
User #31 like Oliver Mitchell liked your post
4/1/2026, 2:32:59 PM
View recordUser #31 like Oliver Mitchell liked your post · 4/1/2026, 2:32:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1154" ); 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/1154"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1154"
)
notification = res.json() Response
{
"id": 1154,
"userId": 31,
"type": "like",
"title": "Oliver Mitchell liked your post",
"body": "Anser nisi tactus cunctatio thema aranea carmen cunabula clam bellum.",
"isRead": false,
"link": "https://example.com/like/ECeqqPB5",
"createdAt": "2026-04-01T14:32:59.674Z"
}