Activity #532
User #249 like Darian Schaden liked your post
5/2/2026, 1:13:19 AM
Overview
notifications / #532
User #249 like Darian Schaden liked your post
5/2/2026, 1:13:19 AM
User #249 like Darian Schaden liked your post
5/2/2026, 1:13:19 AM
View recordUser #249 like Darian Schaden liked your post · 5/2/2026, 1:13:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/532" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/532" ); 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/532"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/532"
)
notification = res.json() Response
{
"id": 532,
"userId": 249,
"type": "like",
"title": "Darian Schaden liked your post",
"body": "Defluo laboriosam theca textilis defungo tres.",
"isRead": true,
"link": null,
"createdAt": "2026-05-02T01:13:19.152Z"
}