Activity #1032
User #185 like Roberta Mueller-Yundt liked your post
10/24/2025, 11:19:37 PM
Overview
notifications / #1032
User #185 like Roberta Mueller-Yundt liked your post
10/24/2025, 11:19:37 PM
User #185 like Roberta Mueller-Yundt liked your post
10/24/2025, 11:19:37 PM
View recordUser #185 like Roberta Mueller-Yundt liked your post · 10/24/2025, 11:19:37 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1032" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1032" ); 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/1032"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1032"
)
notification = res.json() Response
{
"id": 1032,
"userId": 185,
"type": "like",
"title": "Roberta Mueller-Yundt liked your post",
"body": "Commodi concedo tardus ipsa sequi carcer vis.",
"isRead": false,
"link": "https://example.com/like/YGhAoXlI",
"createdAt": "2025-10-24T23:19:37.444Z"
}