Activity #1302
User #137 follow Audreanne Will started following you
2/18/2026, 2:05:26 AM
Overview
notifications / #1302
User #137 follow Audreanne Will started following you
2/18/2026, 2:05:26 AM
User #137 follow Audreanne Will started following you
2/18/2026, 2:05:26 AM
View recordUser #137 follow Audreanne Will started following you · 2/18/2026, 2:05:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1302" ); 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/1302"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1302"
)
notification = res.json() Response
{
"id": 1302,
"userId": 137,
"type": "follow",
"title": "Audreanne Will started following you",
"body": "Vesper accendo despecto alias distinctio repellat aliqua.",
"isRead": false,
"link": "https://example.com/follow/gqcdaKfT",
"createdAt": "2026-02-18T02:05:26.885Z"
}