Activity #1461
User #10 follow Rosina Larkin started following you
3/9/2026, 1:55:36 PM
Overview
notifications / #1461
User #10 follow Rosina Larkin started following you
3/9/2026, 1:55:36 PM
User #10 follow Rosina Larkin started following you
3/9/2026, 1:55:36 PM
View recordUser #10 follow Rosina Larkin started following you · 3/9/2026, 1:55:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1461" ); 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/1461"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1461"
)
notification = res.json() Response
{
"id": 1461,
"userId": 10,
"type": "follow",
"title": "Rosina Larkin started following you",
"body": "Sulum vorago acer talis bellum pectus.",
"isRead": true,
"link": "https://example.com/follow/46uW_f71",
"createdAt": "2026-03-09T13:55:36.713Z"
}