Activity #147
User #180 follow Kariane Schmitt started following you
4/20/2026, 9:15:11 AM
Overview
notifications / #147
User #180 follow Kariane Schmitt started following you
4/20/2026, 9:15:11 AM
User #180 follow Kariane Schmitt started following you
4/20/2026, 9:15:11 AM
View recordUser #180 follow Kariane Schmitt started following you · 4/20/2026, 9:15:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/147" ); 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/147"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/147"
)
notification = res.json() Response
{
"id": 147,
"userId": 180,
"type": "follow",
"title": "Kariane Schmitt started following you",
"body": "Benevolentia contigo aegre.",
"isRead": true,
"link": "https://example.com/follow/PL4CCWCv",
"createdAt": "2026-04-20T09:15:11.717Z"
}