Activity #1522
User #90 like Audreanne Will liked your post
6/24/2025, 10:03:31 PM
Overview
notifications / #1522
User #90 like Audreanne Will liked your post
6/24/2025, 10:03:31 PM
User #90 like Audreanne Will liked your post
6/24/2025, 10:03:31 PM
View recordUser #90 like Audreanne Will liked your post · 6/24/2025, 10:03:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1522" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1522" ); 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/1522"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1522"
)
notification = res.json() Response
{
"id": 1522,
"userId": 90,
"type": "like",
"title": "Audreanne Will liked your post",
"body": "Caute infit vulnus aeternus.",
"isRead": true,
"link": "https://example.com/like/_DFy_EH-",
"createdAt": "2025-06-24T22:03:31.279Z"
}