Activity #1515
User #62 follow Leonor Corwin started following you
3/8/2026, 9:45:47 PM
Overview
notifications / #1515
User #62 follow Leonor Corwin started following you
3/8/2026, 9:45:47 PM
User #62 follow Leonor Corwin started following you
3/8/2026, 9:45:47 PM
View recordUser #62 follow Leonor Corwin started following you · 3/8/2026, 9:45:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1515" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1515" ); 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/1515"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1515"
)
notification = res.json() Response
{
"id": 1515,
"userId": 62,
"type": "follow",
"title": "Leonor Corwin started following you",
"body": "Tendo adnuo celer inventore conservo aequitas aedificium.",
"isRead": false,
"link": "https://example.com/follow/JsZwKyOK",
"createdAt": "2026-03-08T21:45:47.383Z"
}