Activity #72
User #243 follow Amparo Dietrich started following you
7/19/2025, 6:01:52 PM
Overview
notifications / #72
User #243 follow Amparo Dietrich started following you
7/19/2025, 6:01:52 PM
User #243 follow Amparo Dietrich started following you
7/19/2025, 6:01:52 PM
View recordUser #243 follow Amparo Dietrich started following you · 7/19/2025, 6:01:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/72" ); 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/72"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/72"
)
notification = res.json() Response
{
"id": 72,
"userId": 243,
"type": "follow",
"title": "Amparo Dietrich started following you",
"body": "Deprecator adicio subito tactus quis aer tabula.",
"isRead": false,
"link": "https://example.com/follow/RFscMlSJ",
"createdAt": "2025-07-19T18:01:52.379Z"
}