Activity #238
User #191 like Maymie Boehm liked your post
3/6/2026, 11:00:34 AM
Overview
notifications / #238
User #191 like Maymie Boehm liked your post
3/6/2026, 11:00:34 AM
User #191 like Maymie Boehm liked your post
3/6/2026, 11:00:34 AM
View recordUser #191 like Maymie Boehm liked your post · 3/6/2026, 11:00:34 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/238" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/238" ); 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/238"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/238"
)
notification = res.json() Response
{
"id": 238,
"userId": 191,
"type": "like",
"title": "Maymie Boehm liked your post",
"body": "Tricesimus contra ambulo capitulus cubitum varius.",
"isRead": false,
"link": "https://example.com/like/GLBoRSuT",
"createdAt": "2026-03-06T11:00:34.005Z"
}