Activity #736
User #133 like Judy Hackett liked your post
3/6/2026, 5:51:10 AM
Overview
notifications / #736
User #133 like Judy Hackett liked your post
3/6/2026, 5:51:10 AM
User #133 like Judy Hackett liked your post
3/6/2026, 5:51:10 AM
View recordUser #133 like Judy Hackett liked your post · 3/6/2026, 5:51:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/736" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/736" ); 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/736"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/736"
)
notification = res.json() Response
{
"id": 736,
"userId": 133,
"type": "like",
"title": "Judy Hackett liked your post",
"body": "Canto venia color auditor.",
"isRead": true,
"link": "https://example.com/like/vAw0HRup",
"createdAt": "2026-03-06T05:51:10.899Z"
}