Activity #1439
User #43 like Fritz Skiles liked your post
7/12/2025, 7:42:34 PM
Overview
notifications / #1439
User #43 like Fritz Skiles liked your post
7/12/2025, 7:42:34 PM
User #43 like Fritz Skiles liked your post
7/12/2025, 7:42:34 PM
View recordUser #43 like Fritz Skiles liked your post · 7/12/2025, 7:42:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1439" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1439" ); 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/1439"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1439"
)
notification = res.json() Response
{
"id": 1439,
"userId": 43,
"type": "like",
"title": "Fritz Skiles liked your post",
"body": "Animadverto et dolore cedo adopto soleo.",
"isRead": true,
"link": "https://example.com/like/6bXUHXei",
"createdAt": "2025-07-12T19:42:34.470Z"
}