Activity #162
User #188 follow Melvina Reilly started following you
2/3/2026, 9:58:17 AM
Overview
notifications / #162
User #188 follow Melvina Reilly started following you
2/3/2026, 9:58:17 AM
User #188 follow Melvina Reilly started following you
2/3/2026, 9:58:17 AM
View recordUser #188 follow Melvina Reilly started following you · 2/3/2026, 9:58:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/162" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/162" ); 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/162"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/162"
)
notification = res.json() Response
{
"id": 162,
"userId": 188,
"type": "follow",
"title": "Melvina Reilly started following you",
"body": "Auctus vilis tribuo quae suspendo cohors stips.",
"isRead": false,
"link": "https://example.com/follow/OeSuradC",
"createdAt": "2026-02-03T09:58:17.818Z"
}