Activity #1046
User #125 like Allan Buckridge liked your post
9/30/2025, 6:55:28 PM
Overview
notifications / #1046
User #125 like Allan Buckridge liked your post
9/30/2025, 6:55:28 PM
User #125 like Allan Buckridge liked your post
9/30/2025, 6:55:28 PM
View recordUser #125 like Allan Buckridge liked your post · 9/30/2025, 6:55:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1046" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1046" ); 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/1046"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1046"
)
notification = res.json() Response
{
"id": 1046,
"userId": 125,
"type": "like",
"title": "Allan Buckridge liked your post",
"body": "Voluptates defendo defaeco defleo terreo apud bellum creber caecus.",
"isRead": false,
"link": "https://example.com/like/HswCns5x",
"createdAt": "2025-09-30T18:55:28.326Z"
}