Activity #1280
User #224 like Margaretta Barrows liked your post
4/24/2026, 8:57:27 PM
Overview
notifications / #1280
User #224 like Margaretta Barrows liked your post
4/24/2026, 8:57:27 PM
User #224 like Margaretta Barrows liked your post
4/24/2026, 8:57:27 PM
View recordUser #224 like Margaretta Barrows liked your post · 4/24/2026, 8:57:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1280" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1280" ); 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/1280"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1280"
)
notification = res.json() Response
{
"id": 1280,
"userId": 224,
"type": "like",
"title": "Margaretta Barrows liked your post",
"body": "Dedico utroque iure trado tonsor attero arguo suffragium tenus varietas.",
"isRead": false,
"link": "https://example.com/like/ombmZhI3",
"createdAt": "2026-04-24T20:57:27.007Z"
}