Activity #495
User #136 like Dovie Gorczany liked your post
8/16/2025, 2:52:43 PM
Overview
notifications / #495
User #136 like Dovie Gorczany liked your post
8/16/2025, 2:52:43 PM
User #136 like Dovie Gorczany liked your post
8/16/2025, 2:52:43 PM
View recordUser #136 like Dovie Gorczany liked your post · 8/16/2025, 2:52:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/495" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/495" ); 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/495"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/495"
)
notification = res.json() Response
{
"id": 495,
"userId": 136,
"type": "like",
"title": "Dovie Gorczany liked your post",
"body": "Pel subito ulciscor.",
"isRead": true,
"link": null,
"createdAt": "2025-08-16T14:52:43.688Z"
}