Activity #828
User #167 follow Gavin Lowe started following you
5/17/2026, 11:16:38 PM
Overview
notifications / #828
User #167 follow Gavin Lowe started following you
5/17/2026, 11:16:38 PM
User #167 follow Gavin Lowe started following you
5/17/2026, 11:16:38 PM
View recordUser #167 follow Gavin Lowe started following you · 5/17/2026, 11:16:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/828" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/828" ); 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/828"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/828"
)
notification = res.json() Response
{
"id": 828,
"userId": 167,
"type": "follow",
"title": "Gavin Lowe started following you",
"body": "Aperio viduo cotidie apparatus arcus celo versus conqueror valde.",
"isRead": false,
"link": "https://example.com/follow/i9S5gfP9",
"createdAt": "2026-05-17T23:16:38.893Z"
}