Activity #1621
User #113 like Leonor Corwin liked your post
8/2/2025, 10:47:27 PM
Overview
notifications / #1621
User #113 like Leonor Corwin liked your post
8/2/2025, 10:47:27 PM
User #113 like Leonor Corwin liked your post
8/2/2025, 10:47:27 PM
View recordUser #113 like Leonor Corwin liked your post · 8/2/2025, 10:47:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1621" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1621" ); 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/1621"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1621"
)
notification = res.json() Response
{
"id": 1621,
"userId": 113,
"type": "like",
"title": "Leonor Corwin liked your post",
"body": "Delectatio statim aspicio territo.",
"isRead": true,
"link": "https://example.com/like/g7JQMGuw",
"createdAt": "2025-08-02T22:47:27.967Z"
}