Activity #1211
User #239 like Marilou Douglas liked your post
8/30/2025, 3:52:07 PM
Overview
notifications / #1211
User #239 like Marilou Douglas liked your post
8/30/2025, 3:52:07 PM
User #239 like Marilou Douglas liked your post
8/30/2025, 3:52:07 PM
View recordUser #239 like Marilou Douglas liked your post · 8/30/2025, 3:52:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1211" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1211" ); 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/1211"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1211"
)
notification = res.json() Response
{
"id": 1211,
"userId": 239,
"type": "like",
"title": "Marilou Douglas liked your post",
"body": "Venia aveho fugiat.",
"isRead": true,
"link": "https://example.com/like/wRQY96Z0",
"createdAt": "2025-08-30T15:52:07.601Z"
}