Activity #1766
User #175 like Earlene Wisozk liked your post
9/17/2025, 11:16:43 PM
Overview
notifications / #1766
User #175 like Earlene Wisozk liked your post
9/17/2025, 11:16:43 PM
User #175 like Earlene Wisozk liked your post
9/17/2025, 11:16:43 PM
View recordUser #175 like Earlene Wisozk liked your post · 9/17/2025, 11:16:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1766" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1766" ); 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/1766"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1766"
)
notification = res.json() Response
{
"id": 1766,
"userId": 175,
"type": "like",
"title": "Earlene Wisozk liked your post",
"body": "Sit defendo tempore aperio aufero.",
"isRead": false,
"link": "https://example.com/like/6cjR2xen",
"createdAt": "2025-09-17T23:16:43.175Z"
}