Activity #591
User #204 follow Maximus Bosco started following you
10/25/2025, 1:49:33 PM
Overview
notifications / #591
User #204 follow Maximus Bosco started following you
10/25/2025, 1:49:33 PM
User #204 follow Maximus Bosco started following you
10/25/2025, 1:49:33 PM
View recordUser #204 follow Maximus Bosco started following you · 10/25/2025, 1:49:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/591" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/591" ); 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/591"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/591"
)
notification = res.json() Response
{
"id": 591,
"userId": 204,
"type": "follow",
"title": "Maximus Bosco started following you",
"body": "Id taceo voluptatum amplexus cariosus vita avaritia.",
"isRead": false,
"link": "https://example.com/follow/2jhlcC9r",
"createdAt": "2025-10-25T13:49:33.119Z"
}