Activity #724
User #38 follow Trace Witting-Stamm started following you
5/14/2026, 4:38:44 PM
Overview
notifications / #724
User #38 follow Trace Witting-Stamm started following you
5/14/2026, 4:38:44 PM
User #38 follow Trace Witting-Stamm started following you
5/14/2026, 4:38:44 PM
View recordUser #38 follow Trace Witting-Stamm started following you · 5/14/2026, 4:38:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/724" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/724" ); 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/724"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/724"
)
notification = res.json() Response
{
"id": 724,
"userId": 38,
"type": "follow",
"title": "Trace Witting-Stamm started following you",
"body": "Natus cruciamentum surgo ver curto aequitas.",
"isRead": false,
"link": "https://example.com/follow/wznQwK7T",
"createdAt": "2026-05-14T16:38:44.102Z"
}