Activity #1972
User #123 like Chyna Kozey liked your post
9/13/2025, 3:02:20 PM
Overview
notifications / #1972
User #123 like Chyna Kozey liked your post
9/13/2025, 3:02:20 PM
User #123 like Chyna Kozey liked your post
9/13/2025, 3:02:20 PM
View recordUser #123 like Chyna Kozey liked your post · 9/13/2025, 3:02:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1972" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1972" ); 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/1972"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1972"
)
notification = res.json() Response
{
"id": 1972,
"userId": 123,
"type": "like",
"title": "Chyna Kozey liked your post",
"body": "Atqui appono vix cibo balbus accendo tam ut cupiditate suggero.",
"isRead": true,
"link": null,
"createdAt": "2025-09-13T15:02:20.216Z"
}