Activity #1632
User #83 follow Ari Howe started following you
11/12/2025, 8:15:41 AM
Overview
notifications / #1632
User #83 follow Ari Howe started following you
11/12/2025, 8:15:41 AM
User #83 follow Ari Howe started following you
11/12/2025, 8:15:41 AM
View recordUser #83 follow Ari Howe started following you · 11/12/2025, 8:15:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1632" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1632" ); 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/1632"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1632"
)
notification = res.json() Response
{
"id": 1632,
"userId": 83,
"type": "follow",
"title": "Ari Howe started following you",
"body": "Neque ipsa vester templum averto stipes.",
"isRead": false,
"link": "https://example.com/follow/l3WOdcoT",
"createdAt": "2025-11-12T08:15:41.859Z"
}