Activity #693
User #212 follow Maximus Bosco started following you
12/23/2025, 7:15:25 PM
Overview
notifications / #693
User #212 follow Maximus Bosco started following you
12/23/2025, 7:15:25 PM
User #212 follow Maximus Bosco started following you
12/23/2025, 7:15:25 PM
View recordUser #212 follow Maximus Bosco started following you · 12/23/2025, 7:15:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/693" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/693" ); 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/693"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/693"
)
notification = res.json() Response
{
"id": 693,
"userId": 212,
"type": "follow",
"title": "Maximus Bosco started following you",
"body": "Soleo vis beatae conor ipsum circumvenio atque delectatio.",
"isRead": false,
"link": null,
"createdAt": "2025-12-23T19:15:25.647Z"
}