Activity #405
User #205 like Amely Daniel liked your post
10/6/2025, 6:56:09 PM
Overview
notifications / #405
User #205 like Amely Daniel liked your post
10/6/2025, 6:56:09 PM
User #205 like Amely Daniel liked your post
10/6/2025, 6:56:09 PM
View recordUser #205 like Amely Daniel liked your post · 10/6/2025, 6:56:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/405" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/405" ); 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/405"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/405"
)
notification = res.json() Response
{
"id": 405,
"userId": 205,
"type": "like",
"title": "Amely Daniel liked your post",
"body": "Velit caries aegrus vitium solum.",
"isRead": true,
"link": null,
"createdAt": "2025-10-06T18:56:09.556Z"
}