Activity #184
User #244 follow Lavonne Schmidt started following you
11/24/2025, 4:47:20 AM
Overview
notifications / #184
User #244 follow Lavonne Schmidt started following you
11/24/2025, 4:47:20 AM
User #244 follow Lavonne Schmidt started following you
11/24/2025, 4:47:20 AM
View recordUser #244 follow Lavonne Schmidt started following you · 11/24/2025, 4:47:20 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/184" ); 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/184"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/184"
)
notification = res.json() Response
{
"id": 184,
"userId": 244,
"type": "follow",
"title": "Lavonne Schmidt started following you",
"body": "Magnam benigne coruscus curvo.",
"isRead": false,
"link": "https://example.com/follow/1V2p1Ako",
"createdAt": "2025-11-24T04:47:20.447Z"
}