Activity #1479
User #147 like Hilda Crooks liked your post
11/8/2025, 5:58:48 AM
Overview
notifications / #1479
User #147 like Hilda Crooks liked your post
11/8/2025, 5:58:48 AM
User #147 like Hilda Crooks liked your post
11/8/2025, 5:58:48 AM
View recordUser #147 like Hilda Crooks liked your post · 11/8/2025, 5:58:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1479" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1479" ); 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/1479"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1479"
)
notification = res.json() Response
{
"id": 1479,
"userId": 147,
"type": "like",
"title": "Hilda Crooks liked your post",
"body": "Vulnero tondeo uter pariatur acidus articulus comminor inflammatio virgo creator.",
"isRead": false,
"link": "https://example.com/like/WLB21Sqd",
"createdAt": "2025-11-08T05:58:48.917Z"
}