Activity #1485
User #190 like Jaycee Erdman liked your post
5/2/2026, 3:53:32 PM
Overview
notifications / #1485
User #190 like Jaycee Erdman liked your post
5/2/2026, 3:53:32 PM
User #190 like Jaycee Erdman liked your post
5/2/2026, 3:53:32 PM
View recordUser #190 like Jaycee Erdman liked your post · 5/2/2026, 3:53:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1485" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1485" ); 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/1485"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1485"
)
notification = res.json() Response
{
"id": 1485,
"userId": 190,
"type": "like",
"title": "Jaycee Erdman liked your post",
"body": "Stella decor taceo tactus careo.",
"isRead": true,
"link": "https://example.com/like/DvgeRyNa",
"createdAt": "2026-05-02T15:53:32.191Z"
}