Activity #529
User #171 follow Alexa Rippin started following you
4/21/2026, 7:53:14 PM
Overview
notifications / #529
User #171 follow Alexa Rippin started following you
4/21/2026, 7:53:14 PM
User #171 follow Alexa Rippin started following you
4/21/2026, 7:53:14 PM
View recordUser #171 follow Alexa Rippin started following you · 4/21/2026, 7:53:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/529" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/529" ); 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/529"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/529"
)
notification = res.json() Response
{
"id": 529,
"userId": 171,
"type": "follow",
"title": "Alexa Rippin started following you",
"body": "Debitis comis excepturi cribro ab corrupti varietas comedo.",
"isRead": true,
"link": null,
"createdAt": "2026-04-21T19:53:14.702Z"
}