Activity #1399
User #239 like Wallace Batz liked your post
7/15/2025, 11:45:23 AM
Overview
notifications / #1399
User #239 like Wallace Batz liked your post
7/15/2025, 11:45:23 AM
User #239 like Wallace Batz liked your post
7/15/2025, 11:45:23 AM
View recordUser #239 like Wallace Batz liked your post · 7/15/2025, 11:45:23 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1399" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1399" ); 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/1399"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1399"
)
notification = res.json() Response
{
"id": 1399,
"userId": 239,
"type": "like",
"title": "Wallace Batz liked your post",
"body": "Decens basium porro cultellus aegrus.",
"isRead": true,
"link": null,
"createdAt": "2025-07-15T11:45:23.927Z"
}