Activity #1834
User #22 like Kaden Brekke liked your post
1/22/2026, 4:26:15 AM
Overview
notifications / #1834
User #22 like Kaden Brekke liked your post
1/22/2026, 4:26:15 AM
User #22 like Kaden Brekke liked your post
1/22/2026, 4:26:15 AM
View recordUser #22 like Kaden Brekke liked your post · 1/22/2026, 4:26:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1834" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1834" ); 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/1834"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1834"
)
notification = res.json() Response
{
"id": 1834,
"userId": 22,
"type": "like",
"title": "Kaden Brekke liked your post",
"body": "Pax derelinquo valde pectus cuppedia carpo recusandae animadverto desidero.",
"isRead": false,
"link": null,
"createdAt": "2026-01-22T04:26:15.723Z"
}