Activity #1067
User #35 like Perry Kerluke liked your post
3/26/2026, 2:58:03 PM
Overview
notifications / #1067
User #35 like Perry Kerluke liked your post
3/26/2026, 2:58:03 PM
User #35 like Perry Kerluke liked your post
3/26/2026, 2:58:03 PM
View recordUser #35 like Perry Kerluke liked your post · 3/26/2026, 2:58:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1067" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1067" ); 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/1067"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1067"
)
notification = res.json() Response
{
"id": 1067,
"userId": 35,
"type": "like",
"title": "Perry Kerluke liked your post",
"body": "Currus vomica vinum canonicus consequuntur angulus.",
"isRead": true,
"link": "https://example.com/like/oNETe9IY",
"createdAt": "2026-03-26T14:58:03.050Z"
}