Activity #158
User #45 like Eveline Emard liked your post
10/20/2025, 1:52:11 PM
Overview
notifications / #158
User #45 like Eveline Emard liked your post
10/20/2025, 1:52:11 PM
User #45 like Eveline Emard liked your post
10/20/2025, 1:52:11 PM
View recordUser #45 like Eveline Emard liked your post · 10/20/2025, 1:52:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/158" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/158" ); 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/158"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/158"
)
notification = res.json() Response
{
"id": 158,
"userId": 45,
"type": "like",
"title": "Eveline Emard liked your post",
"body": "Clementia soleo consectetur cubicularis demoror cribro appello vesper super.",
"isRead": false,
"link": "https://example.com/like/kYWUXfOO",
"createdAt": "2025-10-20T13:52:11.294Z"
}