Activity #640
User #143 like Maria Senger liked your post
8/13/2025, 1:54:32 PM
Overview
notifications / #640
User #143 like Maria Senger liked your post
8/13/2025, 1:54:32 PM
User #143 like Maria Senger liked your post
8/13/2025, 1:54:32 PM
View recordUser #143 like Maria Senger liked your post · 8/13/2025, 1:54:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/640" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/640" ); 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/640"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/640"
)
notification = res.json() Response
{
"id": 640,
"userId": 143,
"type": "like",
"title": "Maria Senger liked your post",
"body": "Cicuta admoneo triduana verus considero cogo ver.",
"isRead": true,
"link": null,
"createdAt": "2025-08-13T13:54:32.908Z"
}