Activity #1749
User #24 like Anne Hamill liked your post
5/31/2025, 5:27:33 PM
Overview
notifications / #1749
User #24 like Anne Hamill liked your post
5/31/2025, 5:27:33 PM
User #24 like Anne Hamill liked your post
5/31/2025, 5:27:33 PM
View recordUser #24 like Anne Hamill liked your post · 5/31/2025, 5:27:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1749" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1749" ); 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/1749"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1749"
)
notification = res.json() Response
{
"id": 1749,
"userId": 24,
"type": "like",
"title": "Anne Hamill liked your post",
"body": "Repellat exercitationem deficio sed vobis.",
"isRead": false,
"link": "https://example.com/like/iXhWBach",
"createdAt": "2025-05-31T17:27:33.218Z"
}