Activity #92
User #152 like Rubye Emmerich liked your post
8/28/2025, 4:54:12 AM
Overview
notifications / #92
User #152 like Rubye Emmerich liked your post
8/28/2025, 4:54:12 AM
User #152 like Rubye Emmerich liked your post
8/28/2025, 4:54:12 AM
View recordUser #152 like Rubye Emmerich liked your post · 8/28/2025, 4:54:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/92" ); 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/92"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/92"
)
notification = res.json() Response
{
"id": 92,
"userId": 152,
"type": "like",
"title": "Rubye Emmerich liked your post",
"body": "Suppono abduco excepturi fugit velit explicabo delinquo volutabrum.",
"isRead": true,
"link": null,
"createdAt": "2025-08-28T04:54:12.046Z"
}