Activity #1474
User #223 like Jonas Rath liked your post
10/8/2025, 3:16:09 PM
Overview
notifications / #1474
User #223 like Jonas Rath liked your post
10/8/2025, 3:16:09 PM
User #223 like Jonas Rath liked your post
10/8/2025, 3:16:09 PM
View recordUser #223 like Jonas Rath liked your post · 10/8/2025, 3:16:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1474" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1474" ); 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/1474"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1474"
)
notification = res.json() Response
{
"id": 1474,
"userId": 223,
"type": "like",
"title": "Jonas Rath liked your post",
"body": "Autem quis appello curatio suscipio dedico canto tempore unde.",
"isRead": false,
"link": "https://example.com/like/7vwZLGA1",
"createdAt": "2025-10-08T15:16:09.890Z"
}