Activity #1822
User #242 like Ethyl Auer liked your post
10/25/2025, 5:09:08 PM
Overview
notifications / #1822
User #242 like Ethyl Auer liked your post
10/25/2025, 5:09:08 PM
User #242 like Ethyl Auer liked your post
10/25/2025, 5:09:08 PM
View recordUser #242 like Ethyl Auer liked your post · 10/25/2025, 5:09:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1822" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1822" ); 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/1822"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1822"
)
notification = res.json() Response
{
"id": 1822,
"userId": 242,
"type": "like",
"title": "Ethyl Auer liked your post",
"body": "Sollers spero usus speciosus tredecim aranea eaque.",
"isRead": true,
"link": "https://example.com/like/WIkaWBYS",
"createdAt": "2025-10-25T17:09:08.935Z"
}