Activity #1387
User #162 like Karlee Hudson-Turner liked your post
4/19/2026, 8:45:29 AM
Overview
notifications / #1387
User #162 like Karlee Hudson-Turner liked your post
4/19/2026, 8:45:29 AM
User #162 like Karlee Hudson-Turner liked your post
4/19/2026, 8:45:29 AM
View recordUser #162 like Karlee Hudson-Turner liked your post · 4/19/2026, 8:45:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1387" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1387" ); 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/1387"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1387"
)
notification = res.json() Response
{
"id": 1387,
"userId": 162,
"type": "like",
"title": "Karlee Hudson-Turner liked your post",
"body": "Doloribus carbo cupiditate celo administratio.",
"isRead": true,
"link": "https://example.com/like/09L_VObL",
"createdAt": "2026-04-19T08:45:29.692Z"
}