Activity #1193
User #75 like Maria Senger liked your post
11/15/2025, 9:08:55 AM
Overview
notifications / #1193
User #75 like Maria Senger liked your post
11/15/2025, 9:08:55 AM
User #75 like Maria Senger liked your post
11/15/2025, 9:08:55 AM
View recordUser #75 like Maria Senger liked your post · 11/15/2025, 9:08:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1193" ); 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/1193"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1193"
)
notification = res.json() Response
{
"id": 1193,
"userId": 75,
"type": "like",
"title": "Maria Senger liked your post",
"body": "Adhuc sortitus recusandae cresco tutamen tenax in auctus adicio baiulus.",
"isRead": true,
"link": "https://example.com/like/lQAQ8whs",
"createdAt": "2025-11-15T09:08:55.248Z"
}