Activity #1272
User #230 follow Rosella Homenick started following you
8/20/2025, 2:17:05 PM
Overview
notifications / #1272
User #230 follow Rosella Homenick started following you
8/20/2025, 2:17:05 PM
User #230 follow Rosella Homenick started following you
8/20/2025, 2:17:05 PM
View recordUser #230 follow Rosella Homenick started following you · 8/20/2025, 2:17:05 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1272" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1272" ); 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/1272"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1272"
)
notification = res.json() Response
{
"id": 1272,
"userId": 230,
"type": "follow",
"title": "Rosella Homenick started following you",
"body": "Ambitus tantillus cernuus nesciunt distinctio varietas vivo adicio.",
"isRead": false,
"link": null,
"createdAt": "2025-08-20T14:17:05.749Z"
}