Activity #393
User #56 like Americo Hoppe liked your post
5/28/2025, 10:17:48 PM
Overview
notifications / #393
User #56 like Americo Hoppe liked your post
5/28/2025, 10:17:48 PM
User #56 like Americo Hoppe liked your post
5/28/2025, 10:17:48 PM
View recordUser #56 like Americo Hoppe liked your post · 5/28/2025, 10:17:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/393" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/393" ); 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/393"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/393"
)
notification = res.json() Response
{
"id": 393,
"userId": 56,
"type": "like",
"title": "Americo Hoppe liked your post",
"body": "Clam aegrus clementia.",
"isRead": false,
"link": "https://example.com/like/WjdQiFXE",
"createdAt": "2025-05-28T22:17:48.340Z"
}