Activity #1809
User #27 follow Mia Renner started following you
2/22/2026, 5:15:29 PM
Overview
notifications / #1809
User #27 follow Mia Renner started following you
2/22/2026, 5:15:29 PM
User #27 follow Mia Renner started following you
2/22/2026, 5:15:29 PM
View recordUser #27 follow Mia Renner started following you · 2/22/2026, 5:15:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1809" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1809" ); 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/1809"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1809"
)
notification = res.json() Response
{
"id": 1809,
"userId": 27,
"type": "follow",
"title": "Mia Renner started following you",
"body": "Ocer caecus demonstro odio vesica soleo dolor calculus sono.",
"isRead": false,
"link": "https://example.com/follow/XiAbj0AC",
"createdAt": "2026-02-22T17:15:29.416Z"
}