Activity #1710
User #240 like Kevon Dickinson liked your post
11/10/2025, 6:43:36 AM
Overview
notifications / #1710
User #240 like Kevon Dickinson liked your post
11/10/2025, 6:43:36 AM
User #240 like Kevon Dickinson liked your post
11/10/2025, 6:43:36 AM
View recordUser #240 like Kevon Dickinson liked your post · 11/10/2025, 6:43:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1710" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1710" ); 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/1710"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1710"
)
notification = res.json() Response
{
"id": 1710,
"userId": 240,
"type": "like",
"title": "Kevon Dickinson liked your post",
"body": "Tollo spero surgo demonstro cunae capillus demum bardus sperno ventosus.",
"isRead": false,
"link": null,
"createdAt": "2025-11-10T06:43:36.803Z"
}