Activity #355
User #190 like Celia D'Amore liked your post
2/3/2026, 11:24:35 AM
Overview
notifications / #355
User #190 like Celia D'Amore liked your post
2/3/2026, 11:24:35 AM
User #190 like Celia D'Amore liked your post
2/3/2026, 11:24:35 AM
View recordUser #190 like Celia D'Amore liked your post · 2/3/2026, 11:24:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/355" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/355" ); 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/355"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/355"
)
notification = res.json() Response
{
"id": 355,
"userId": 190,
"type": "like",
"title": "Celia D'Amore liked your post",
"body": "Demergo tutis vulnus bestia via caute bibo.",
"isRead": false,
"link": "https://example.com/like/LBaO4GF-",
"createdAt": "2026-02-03T11:24:35.578Z"
}