Activity #1079
User #110 like Michaela Feeney liked your post
7/24/2025, 8:58:30 AM
Overview
notifications / #1079
User #110 like Michaela Feeney liked your post
7/24/2025, 8:58:30 AM
User #110 like Michaela Feeney liked your post
7/24/2025, 8:58:30 AM
View recordUser #110 like Michaela Feeney liked your post · 7/24/2025, 8:58:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1079" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1079" ); 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/1079"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1079"
)
notification = res.json() Response
{
"id": 1079,
"userId": 110,
"type": "like",
"title": "Michaela Feeney liked your post",
"body": "Omnis cohibeo comitatus in ciminatio illo desino.",
"isRead": false,
"link": "https://example.com/like/SB3m7_DK",
"createdAt": "2025-07-24T08:58:30.590Z"
}