Activity #1133
User #33 like Casimir Smitham liked your post
11/9/2025, 5:40:30 PM
Overview
notifications / #1133
User #33 like Casimir Smitham liked your post
11/9/2025, 5:40:30 PM
User #33 like Casimir Smitham liked your post
11/9/2025, 5:40:30 PM
View recordUser #33 like Casimir Smitham liked your post · 11/9/2025, 5:40:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1133" ); 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/1133"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1133"
)
notification = res.json() Response
{
"id": 1133,
"userId": 33,
"type": "like",
"title": "Casimir Smitham liked your post",
"body": "Vestrum iusto verumtamen acerbitas.",
"isRead": true,
"link": null,
"createdAt": "2025-11-09T17:40:30.080Z"
}