Activity #558
User #38 like Douglas Frami liked your post
4/17/2026, 10:08:12 PM
Overview
notifications / #558
User #38 like Douglas Frami liked your post
4/17/2026, 10:08:12 PM
User #38 like Douglas Frami liked your post
4/17/2026, 10:08:12 PM
View recordUser #38 like Douglas Frami liked your post · 4/17/2026, 10:08:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/558" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/558" ); 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/558"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/558"
)
notification = res.json() Response
{
"id": 558,
"userId": 38,
"type": "like",
"title": "Douglas Frami liked your post",
"body": "Acceptus calculus cruentus patrocinor crastinus victus apud claustrum.",
"isRead": true,
"link": "https://example.com/like/YoSFYImM",
"createdAt": "2026-04-17T22:08:12.432Z"
}