Activity #556
User #20 follow Hilda Crooks started following you
2/24/2026, 6:14:33 AM
Overview
notifications / #556
User #20 follow Hilda Crooks started following you
2/24/2026, 6:14:33 AM
User #20 follow Hilda Crooks started following you
2/24/2026, 6:14:33 AM
View recordUser #20 follow Hilda Crooks started following you · 2/24/2026, 6:14:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/556" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/556" ); 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/556"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/556"
)
notification = res.json() Response
{
"id": 556,
"userId": 20,
"type": "follow",
"title": "Hilda Crooks started following you",
"body": "Tertius ceno tamdiu adamo bardus arguo voveo cubicularis.",
"isRead": true,
"link": null,
"createdAt": "2026-02-24T06:14:33.518Z"
}