Activity #137
User #59 follow Wade Upton started following you
10/11/2025, 10:30:50 PM
Overview
notifications / #137
User #59 follow Wade Upton started following you
10/11/2025, 10:30:50 PM
User #59 follow Wade Upton started following you
10/11/2025, 10:30:50 PM
View recordUser #59 follow Wade Upton started following you · 10/11/2025, 10:30:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/137" ); 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/137"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/137"
)
notification = res.json() Response
{
"id": 137,
"userId": 59,
"type": "follow",
"title": "Wade Upton started following you",
"body": "Tres ventus absque vulnero virtus celebrer possimus.",
"isRead": true,
"link": "https://example.com/follow/EuS1Xw8r",
"createdAt": "2025-10-11T22:30:50.479Z"
}