Activity #733
User #151 follow Antoinette Greenfelder started following you
1/5/2026, 6:03:37 AM
Overview
notifications / #733
User #151 follow Antoinette Greenfelder started following you
1/5/2026, 6:03:37 AM
User #151 follow Antoinette Greenfelder started following you
1/5/2026, 6:03:37 AM
View recordUser #151 follow Antoinette Greenfelder started following you · 1/5/2026, 6:03:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/733" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/733" ); 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/733"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/733"
)
notification = res.json() Response
{
"id": 733,
"userId": 151,
"type": "follow",
"title": "Antoinette Greenfelder started following you",
"body": "Verto laudantium bibo calculus absum dedico vomito virtus aperte molestias.",
"isRead": false,
"link": null,
"createdAt": "2026-01-05T06:03:37.136Z"
}