Activity #383
User #83 like Jacynthe Sawayn liked your post
7/12/2025, 2:33:57 AM
Overview
notifications / #383
User #83 like Jacynthe Sawayn liked your post
7/12/2025, 2:33:57 AM
User #83 like Jacynthe Sawayn liked your post
7/12/2025, 2:33:57 AM
View recordUser #83 like Jacynthe Sawayn liked your post · 7/12/2025, 2:33:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/383" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/383" ); 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/383"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/383"
)
notification = res.json() Response
{
"id": 383,
"userId": 83,
"type": "like",
"title": "Jacynthe Sawayn liked your post",
"body": "Alii vita certe curso tepidus vitiosus.",
"isRead": true,
"link": "https://example.com/like/dVYPNbhJ",
"createdAt": "2025-07-12T02:33:57.514Z"
}