Activity #1283
User #36 like Phyllis Hyatt liked your post
7/30/2025, 2:59:00 AM
Overview
notifications / #1283
User #36 like Phyllis Hyatt liked your post
7/30/2025, 2:59:00 AM
User #36 like Phyllis Hyatt liked your post
7/30/2025, 2:59:00 AM
View recordUser #36 like Phyllis Hyatt liked your post · 7/30/2025, 2:59:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1283" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1283" ); 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/1283"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1283"
)
notification = res.json() Response
{
"id": 1283,
"userId": 36,
"type": "like",
"title": "Phyllis Hyatt liked your post",
"body": "Ventito templum comptus clibanus temeritas vere decor callide.",
"isRead": true,
"link": "https://example.com/like/3CO4LUt1",
"createdAt": "2025-07-30T02:59:00.380Z"
}