Activity #543
User #221 like Karolann Legros liked your post
9/19/2025, 10:02:01 AM
Overview
notifications / #543
User #221 like Karolann Legros liked your post
9/19/2025, 10:02:01 AM
User #221 like Karolann Legros liked your post
9/19/2025, 10:02:01 AM
View recordUser #221 like Karolann Legros liked your post · 9/19/2025, 10:02:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/543" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/543" ); 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/543"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/543"
)
notification = res.json() Response
{
"id": 543,
"userId": 221,
"type": "like",
"title": "Karolann Legros liked your post",
"body": "Modi cunae coadunatio turbo deprimo campana.",
"isRead": false,
"link": "https://example.com/like/wXttOxr2",
"createdAt": "2025-09-19T10:02:01.078Z"
}