Activity #1833
User #141 follow Maymie Boehm started following you
12/8/2025, 11:48:51 AM
Overview
notifications / #1833
User #141 follow Maymie Boehm started following you
12/8/2025, 11:48:51 AM
User #141 follow Maymie Boehm started following you
12/8/2025, 11:48:51 AM
View recordUser #141 follow Maymie Boehm started following you · 12/8/2025, 11:48:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1833" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1833" ); 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/1833"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1833"
)
notification = res.json() Response
{
"id": 1833,
"userId": 141,
"type": "follow",
"title": "Maymie Boehm started following you",
"body": "Volaticus maxime communis dedico.",
"isRead": true,
"link": "https://example.com/follow/SASM79kf",
"createdAt": "2025-12-08T11:48:51.205Z"
}