Activity #1982
User #228 like Jamaal Rolfson liked your post
4/30/2026, 8:26:04 PM
Overview
notifications / #1982
User #228 like Jamaal Rolfson liked your post
4/30/2026, 8:26:04 PM
User #228 like Jamaal Rolfson liked your post
4/30/2026, 8:26:04 PM
View recordUser #228 like Jamaal Rolfson liked your post · 4/30/2026, 8:26:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1982" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1982" ); 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/1982"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1982"
)
notification = res.json() Response
{
"id": 1982,
"userId": 228,
"type": "like",
"title": "Jamaal Rolfson liked your post",
"body": "Crur charisma tabella videlicet claro commodi.",
"isRead": true,
"link": "https://example.com/like/SRhOYBLI",
"createdAt": "2026-04-30T20:26:04.633Z"
}