Activity #55
User #136 like Frederic Armstrong liked your post
5/17/2026, 3:02:30 AM
Overview
notifications / #55
User #136 like Frederic Armstrong liked your post
5/17/2026, 3:02:30 AM
User #136 like Frederic Armstrong liked your post
5/17/2026, 3:02:30 AM
View recordUser #136 like Frederic Armstrong liked your post · 5/17/2026, 3:02:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/55" ); 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/55"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/55"
)
notification = res.json() Response
{
"id": 55,
"userId": 136,
"type": "like",
"title": "Frederic Armstrong liked your post",
"body": "Abbas tempus amo.",
"isRead": false,
"link": "https://example.com/like/dse3ISGX",
"createdAt": "2026-05-17T03:02:30.222Z"
}