Activity #576
User #110 follow Lazaro Rath started following you
7/30/2025, 7:51:45 AM
Overview
notifications / #576
User #110 follow Lazaro Rath started following you
7/30/2025, 7:51:45 AM
User #110 follow Lazaro Rath started following you
7/30/2025, 7:51:45 AM
View recordUser #110 follow Lazaro Rath started following you · 7/30/2025, 7:51:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/576" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/576" ); 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/576"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/576"
)
notification = res.json() Response
{
"id": 576,
"userId": 110,
"type": "follow",
"title": "Lazaro Rath started following you",
"body": "Harum adicio aptus cogito torrens sunt cohors celer.",
"isRead": false,
"link": "https://example.com/follow/5ECbVRep",
"createdAt": "2025-07-30T07:51:45.650Z"
}