Activity #1651
User #130 follow Lew O'Kon started following you
4/6/2026, 10:03:30 AM
Overview
notifications / #1651
User #130 follow Lew O'Kon started following you
4/6/2026, 10:03:30 AM
User #130 follow Lew O'Kon started following you
4/6/2026, 10:03:30 AM
View recordUser #130 follow Lew O'Kon started following you · 4/6/2026, 10:03:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1651" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1651" ); 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/1651"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1651"
)
notification = res.json() Response
{
"id": 1651,
"userId": 130,
"type": "follow",
"title": "Lew O'Kon started following you",
"body": "Textilis adeo deduco contego umerus audacia cupressus uredo.",
"isRead": false,
"link": "https://example.com/follow/eM7Fy7Ek",
"createdAt": "2026-04-06T10:03:30.457Z"
}