Activity #1446
User #57 like Carmel Schultz liked your post
12/26/2025, 4:23:33 PM
Overview
notifications / #1446
User #57 like Carmel Schultz liked your post
12/26/2025, 4:23:33 PM
User #57 like Carmel Schultz liked your post
12/26/2025, 4:23:33 PM
View recordUser #57 like Carmel Schultz liked your post · 12/26/2025, 4:23:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1446" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1446" ); 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/1446"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1446"
)
notification = res.json() Response
{
"id": 1446,
"userId": 57,
"type": "like",
"title": "Carmel Schultz liked your post",
"body": "Canonicus provident comis vigilo arto.",
"isRead": true,
"link": null,
"createdAt": "2025-12-26T16:23:33.325Z"
}