Activity #473
User #194 follow Wiley Rodriguez started following you
8/3/2025, 1:04:32 AM
Overview
notifications / #473
User #194 follow Wiley Rodriguez started following you
8/3/2025, 1:04:32 AM
User #194 follow Wiley Rodriguez started following you
8/3/2025, 1:04:32 AM
View recordUser #194 follow Wiley Rodriguez started following you · 8/3/2025, 1:04:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/473" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/473" ); 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/473"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/473"
)
notification = res.json() Response
{
"id": 473,
"userId": 194,
"type": "follow",
"title": "Wiley Rodriguez started following you",
"body": "Adipisci crastinus stips conatus vobis claro incidunt nostrum combibo.",
"isRead": false,
"link": "https://example.com/follow/JXWoXpjX",
"createdAt": "2025-08-03T01:04:32.206Z"
}