Activity #1224
User #115 like Jolie Abernathy liked your post
9/7/2025, 2:04:32 PM
Overview
notifications / #1224
User #115 like Jolie Abernathy liked your post
9/7/2025, 2:04:32 PM
User #115 like Jolie Abernathy liked your post
9/7/2025, 2:04:32 PM
View recordUser #115 like Jolie Abernathy liked your post · 9/7/2025, 2:04:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1224" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1224" ); 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/1224"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1224"
)
notification = res.json() Response
{
"id": 1224,
"userId": 115,
"type": "like",
"title": "Jolie Abernathy liked your post",
"body": "Accedo repudiandae vir conatus adstringo.",
"isRead": false,
"link": "https://example.com/like/pgxhPAQI",
"createdAt": "2025-09-07T14:04:32.134Z"
}