Activity #1353
User #143 follow Lilla Koss started following you
2/10/2026, 6:06:35 AM
Overview
notifications / #1353
User #143 follow Lilla Koss started following you
2/10/2026, 6:06:35 AM
User #143 follow Lilla Koss started following you
2/10/2026, 6:06:35 AM
View recordUser #143 follow Lilla Koss started following you · 2/10/2026, 6:06:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1353" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1353" ); 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/1353"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1353"
)
notification = res.json() Response
{
"id": 1353,
"userId": 143,
"type": "follow",
"title": "Lilla Koss started following you",
"body": "Voluptatum crastinus supellex.",
"isRead": false,
"link": "https://example.com/follow/sZ7i0L96",
"createdAt": "2026-02-10T06:06:35.737Z"
}