Activity #1870
User #79 follow Brad Wisoky started following you
3/25/2026, 7:08:35 AM
Overview
notifications / #1870
User #79 follow Brad Wisoky started following you
3/25/2026, 7:08:35 AM
User #79 follow Brad Wisoky started following you
3/25/2026, 7:08:35 AM
View recordUser #79 follow Brad Wisoky started following you · 3/25/2026, 7:08:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1870" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1870" ); 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/1870"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1870"
)
notification = res.json() Response
{
"id": 1870,
"userId": 79,
"type": "follow",
"title": "Brad Wisoky started following you",
"body": "Quasi fuga velum tui amplitudo.",
"isRead": false,
"link": "https://example.com/follow/dyGPYdeB",
"createdAt": "2026-03-25T07:08:35.568Z"
}