Activity #579
User #137 follow Lazaro Rath started following you
5/1/2026, 3:35:07 AM
Overview
notifications / #579
User #137 follow Lazaro Rath started following you
5/1/2026, 3:35:07 AM
User #137 follow Lazaro Rath started following you
5/1/2026, 3:35:07 AM
View recordUser #137 follow Lazaro Rath started following you · 5/1/2026, 3:35:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/579" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/579" ); 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/579"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/579"
)
notification = res.json() Response
{
"id": 579,
"userId": 137,
"type": "follow",
"title": "Lazaro Rath started following you",
"body": "Illum viridis bestia nemo.",
"isRead": false,
"link": "https://example.com/follow/p70r23fm",
"createdAt": "2026-05-01T03:35:07.196Z"
}