Activity #1628
User #143 like Mazie Douglas liked your post
5/25/2025, 3:46:27 AM
Overview
notifications / #1628
User #143 like Mazie Douglas liked your post
5/25/2025, 3:46:27 AM
User #143 like Mazie Douglas liked your post
5/25/2025, 3:46:27 AM
View recordUser #143 like Mazie Douglas liked your post · 5/25/2025, 3:46:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1628" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1628" ); 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/1628"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1628"
)
notification = res.json() Response
{
"id": 1628,
"userId": 143,
"type": "like",
"title": "Mazie Douglas liked your post",
"body": "Deorsum universe maxime crapula tamen tricesimus velum curis ancilla aestas.",
"isRead": true,
"link": "https://example.com/like/XBQKId3w",
"createdAt": "2025-05-25T03:46:27.663Z"
}