Activity #1702
User #33 follow Autumn Bartell started following you
1/25/2026, 6:51:46 AM
Overview
notifications / #1702
User #33 follow Autumn Bartell started following you
1/25/2026, 6:51:46 AM
User #33 follow Autumn Bartell started following you
1/25/2026, 6:51:46 AM
View recordUser #33 follow Autumn Bartell started following you · 1/25/2026, 6:51:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1702" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1702" ); 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/1702"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1702"
)
notification = res.json() Response
{
"id": 1702,
"userId": 33,
"type": "follow",
"title": "Autumn Bartell started following you",
"body": "Illum cavus dens validus apparatus turba autus communis auctus.",
"isRead": false,
"link": "https://example.com/follow/ASyOlWPV",
"createdAt": "2026-01-25T06:51:46.308Z"
}