Activity #305
User #31 like Telly Sanford liked your post
6/18/2025, 4:27:35 PM
Overview
notifications / #305
User #31 like Telly Sanford liked your post
6/18/2025, 4:27:35 PM
User #31 like Telly Sanford liked your post
6/18/2025, 4:27:35 PM
View recordUser #31 like Telly Sanford liked your post · 6/18/2025, 4:27:35 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/305" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/305" ); 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/305"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/305"
)
notification = res.json() Response
{
"id": 305,
"userId": 31,
"type": "like",
"title": "Telly Sanford liked your post",
"body": "Confero ventito sublime considero contra absorbeo video aspicio calcar.",
"isRead": true,
"link": "https://example.com/like/tcqiJ4sE",
"createdAt": "2025-06-18T16:27:35.520Z"
}