Activity #164
User #85 follow Cindy Barrows started following you
6/16/2025, 8:48:40 AM
Overview
notifications / #164
User #85 follow Cindy Barrows started following you
6/16/2025, 8:48:40 AM
User #85 follow Cindy Barrows started following you
6/16/2025, 8:48:40 AM
View recordUser #85 follow Cindy Barrows started following you · 6/16/2025, 8:48:40 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/164" ); 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/164"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/164"
)
notification = res.json() Response
{
"id": 164,
"userId": 85,
"type": "follow",
"title": "Cindy Barrows started following you",
"body": "Vinco abscido templum comburo voro angustus tumultus aspernatur aliquid taceo.",
"isRead": false,
"link": "https://example.com/follow/X0BTaJWa",
"createdAt": "2025-06-16T08:48:40.356Z"
}