Activity #1240
User #38 like Orrin Grant liked your post
9/25/2025, 2:56:38 PM
Overview
notifications / #1240
User #38 like Orrin Grant liked your post
9/25/2025, 2:56:38 PM
User #38 like Orrin Grant liked your post
9/25/2025, 2:56:38 PM
View recordUser #38 like Orrin Grant liked your post · 9/25/2025, 2:56:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1240" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1240" ); 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/1240"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1240"
)
notification = res.json() Response
{
"id": 1240,
"userId": 38,
"type": "like",
"title": "Orrin Grant liked your post",
"body": "Alveus nulla clibanus.",
"isRead": true,
"link": null,
"createdAt": "2025-09-25T14:56:38.880Z"
}