Activity #853
User #238 like Earlene Wisozk liked your post
7/9/2025, 2:07:09 AM
Overview
notifications / #853
User #238 like Earlene Wisozk liked your post
7/9/2025, 2:07:09 AM
User #238 like Earlene Wisozk liked your post
7/9/2025, 2:07:09 AM
View recordUser #238 like Earlene Wisozk liked your post · 7/9/2025, 2:07:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/853" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/853" ); 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/853"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/853"
)
notification = res.json() Response
{
"id": 853,
"userId": 238,
"type": "like",
"title": "Earlene Wisozk liked your post",
"body": "Ventus amitto cras vix alo adiuvo thema.",
"isRead": false,
"link": "https://example.com/like/njMVSASA",
"createdAt": "2025-07-09T02:07:09.790Z"
}