Activity #172
User #9 follow Alvena Emmerich started following you
2/21/2026, 6:02:50 AM
Overview
notifications / #172
User #9 follow Alvena Emmerich started following you
2/21/2026, 6:02:50 AM
User #9 follow Alvena Emmerich started following you
2/21/2026, 6:02:50 AM
View recordUser #9 follow Alvena Emmerich started following you · 2/21/2026, 6:02:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/172" ); 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/172"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/172"
)
notification = res.json() Response
{
"id": 172,
"userId": 9,
"type": "follow",
"title": "Alvena Emmerich started following you",
"body": "Tonsor aeternus vitiosus.",
"isRead": true,
"link": "https://example.com/follow/OEUWszy4",
"createdAt": "2026-02-21T06:02:50.088Z"
}