Activity #1484
User #87 follow Maximus Bosco started following you
7/14/2025, 10:39:25 PM
Overview
notifications / #1484
User #87 follow Maximus Bosco started following you
7/14/2025, 10:39:25 PM
User #87 follow Maximus Bosco started following you
7/14/2025, 10:39:25 PM
View recordUser #87 follow Maximus Bosco started following you · 7/14/2025, 10:39:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1484" ); 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/1484"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1484"
)
notification = res.json() Response
{
"id": 1484,
"userId": 87,
"type": "follow",
"title": "Maximus Bosco started following you",
"body": "Antea stipes bene denuncio confido.",
"isRead": false,
"link": "https://example.com/follow/SHaZJpjy",
"createdAt": "2025-07-14T22:39:25.676Z"
}