Activity #106
User #65 follow Tabitha Ruecker started following you
5/20/2026, 11:56:32 PM
Overview
notifications / #106
User #65 follow Tabitha Ruecker started following you
5/20/2026, 11:56:32 PM
User #65 follow Tabitha Ruecker started following you
5/20/2026, 11:56:32 PM
View recordUser #65 follow Tabitha Ruecker started following you · 5/20/2026, 11:56:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/106" ); 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/106"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/106"
)
notification = res.json() Response
{
"id": 106,
"userId": 65,
"type": "follow",
"title": "Tabitha Ruecker started following you",
"body": "Aetas verbera circumvenio antiquus civis subiungo.",
"isRead": false,
"link": "https://example.com/follow/edP6T1Ts",
"createdAt": "2026-05-20T23:56:32.260Z"
}