Activity #1199
User #35 like Ressie Howell-Hodkiewicz liked your post
4/17/2026, 2:50:43 PM
Overview
notifications / #1199
User #35 like Ressie Howell-Hodkiewicz liked your post
4/17/2026, 2:50:43 PM
User #35 like Ressie Howell-Hodkiewicz liked your post
4/17/2026, 2:50:43 PM
View recordUser #35 like Ressie Howell-Hodkiewicz liked your post · 4/17/2026, 2:50:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1199" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1199" ); 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/1199"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1199"
)
notification = res.json() Response
{
"id": 1199,
"userId": 35,
"type": "like",
"title": "Ressie Howell-Hodkiewicz liked your post",
"body": "Officia reprehenderit cometes modi condico blandior minima.",
"isRead": true,
"link": null,
"createdAt": "2026-04-17T14:50:43.964Z"
}