Activity #1379
User #134 like Jameson Considine liked your post
8/19/2025, 3:39:34 PM
Overview
notifications / #1379
User #134 like Jameson Considine liked your post
8/19/2025, 3:39:34 PM
User #134 like Jameson Considine liked your post
8/19/2025, 3:39:34 PM
View recordUser #134 like Jameson Considine liked your post · 8/19/2025, 3:39:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1379" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1379" ); 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/1379"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1379"
)
notification = res.json() Response
{
"id": 1379,
"userId": 134,
"type": "like",
"title": "Jameson Considine liked your post",
"body": "Arx sollers ulterius aspernatur dens tutamen.",
"isRead": true,
"link": null,
"createdAt": "2025-08-19T15:39:34.432Z"
}