Activity #159
User #136 like Lamont Huel liked your post
12/28/2025, 12:51:07 PM
Overview
notifications / #159
User #136 like Lamont Huel liked your post
12/28/2025, 12:51:07 PM
User #136 like Lamont Huel liked your post
12/28/2025, 12:51:07 PM
View recordUser #136 like Lamont Huel liked your post · 12/28/2025, 12:51:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/159" ); 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/159"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/159"
)
notification = res.json() Response
{
"id": 159,
"userId": 136,
"type": "like",
"title": "Lamont Huel liked your post",
"body": "Delicate repudiandae conatus in vesper stabilis tempora alter.",
"isRead": true,
"link": "https://example.com/like/ucaVm6vD",
"createdAt": "2025-12-28T12:51:07.113Z"
}