Activity #710
User #188 follow Hortense Cruickshank started following you
5/9/2026, 6:20:01 PM
Overview
notifications / #710
User #188 follow Hortense Cruickshank started following you
5/9/2026, 6:20:01 PM
User #188 follow Hortense Cruickshank started following you
5/9/2026, 6:20:01 PM
View recordUser #188 follow Hortense Cruickshank started following you · 5/9/2026, 6:20:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/710" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/710" ); 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/710"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/710"
)
notification = res.json() Response
{
"id": 710,
"userId": 188,
"type": "follow",
"title": "Hortense Cruickshank started following you",
"body": "Vobis cunabula cruentus curia.",
"isRead": true,
"link": "https://example.com/follow/E8D6H5fj",
"createdAt": "2026-05-09T18:20:01.349Z"
}