Activity #537
User #124 like Amari Koch liked your post
5/24/2025, 6:09:02 PM
Overview
notifications / #537
User #124 like Amari Koch liked your post
5/24/2025, 6:09:02 PM
User #124 like Amari Koch liked your post
5/24/2025, 6:09:02 PM
View recordUser #124 like Amari Koch liked your post · 5/24/2025, 6:09:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/537" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/537" ); 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/537"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/537"
)
notification = res.json() Response
{
"id": 537,
"userId": 124,
"type": "like",
"title": "Amari Koch liked your post",
"body": "Deduco attero termes rerum decens colo spiculum vomer apud.",
"isRead": false,
"link": "https://example.com/like/D4cpbgxn",
"createdAt": "2025-05-24T18:09:02.934Z"
}