Activity #1889
User #219 follow Lazaro Herzog started following you
8/21/2025, 3:48:57 AM
Overview
notifications / #1889
User #219 follow Lazaro Herzog started following you
8/21/2025, 3:48:57 AM
User #219 follow Lazaro Herzog started following you
8/21/2025, 3:48:57 AM
View recordUser #219 follow Lazaro Herzog started following you · 8/21/2025, 3:48:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1889" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1889" ); 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/1889"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1889"
)
notification = res.json() Response
{
"id": 1889,
"userId": 219,
"type": "follow",
"title": "Lazaro Herzog started following you",
"body": "Suscipio optio assentator vulnus aspicio veritatis.",
"isRead": true,
"link": "https://example.com/follow/DFy8iMAi",
"createdAt": "2025-08-21T03:48:57.606Z"
}