Activity #1931
User #185 follow Beau Stiedemann started following you
2/26/2026, 8:02:58 PM
Overview
notifications / #1931
User #185 follow Beau Stiedemann started following you
2/26/2026, 8:02:58 PM
User #185 follow Beau Stiedemann started following you
2/26/2026, 8:02:58 PM
View recordUser #185 follow Beau Stiedemann started following you · 2/26/2026, 8:02:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1931" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1931" ); 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/1931"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1931"
)
notification = res.json() Response
{
"id": 1931,
"userId": 185,
"type": "follow",
"title": "Beau Stiedemann started following you",
"body": "Sollicito comprehendo ver velut triduana accusantium amo alveus verumtamen creptio.",
"isRead": true,
"link": "https://example.com/follow/SNunsxCZ",
"createdAt": "2026-02-26T20:02:58.882Z"
}