Activity #1778
User #159 like Jolie Abernathy liked your post
1/15/2026, 2:33:12 AM
Overview
notifications / #1778
User #159 like Jolie Abernathy liked your post
1/15/2026, 2:33:12 AM
User #159 like Jolie Abernathy liked your post
1/15/2026, 2:33:12 AM
View recordUser #159 like Jolie Abernathy liked your post · 1/15/2026, 2:33:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1778" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1778" ); 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/1778"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1778"
)
notification = res.json() Response
{
"id": 1778,
"userId": 159,
"type": "like",
"title": "Jolie Abernathy liked your post",
"body": "Calcar corporis una eaque inflammatio conspergo venio admoneo delego carpo.",
"isRead": false,
"link": "https://example.com/like/StHbwfSU",
"createdAt": "2026-01-15T02:33:12.802Z"
}