Activity #992
User #56 follow Esperanza Casper started following you
2/4/2026, 2:46:27 PM
Overview
notifications / #992
User #56 follow Esperanza Casper started following you
2/4/2026, 2:46:27 PM
User #56 follow Esperanza Casper started following you
2/4/2026, 2:46:27 PM
View recordUser #56 follow Esperanza Casper started following you · 2/4/2026, 2:46:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/992" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/992" ); 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/992"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/992"
)
notification = res.json() Response
{
"id": 992,
"userId": 56,
"type": "follow",
"title": "Esperanza Casper started following you",
"body": "Deleo vitium ustulo admoveo.",
"isRead": true,
"link": "https://example.com/follow/L8YXm3OW",
"createdAt": "2026-02-04T14:46:27.233Z"
}