Activity #927
User #66 follow Amya Powlowski started following you
3/30/2026, 5:40:01 PM
Overview
notifications / #927
User #66 follow Amya Powlowski started following you
3/30/2026, 5:40:01 PM
User #66 follow Amya Powlowski started following you
3/30/2026, 5:40:01 PM
View recordUser #66 follow Amya Powlowski started following you · 3/30/2026, 5:40:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/927" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/927" ); 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/927"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/927"
)
notification = res.json() Response
{
"id": 927,
"userId": 66,
"type": "follow",
"title": "Amya Powlowski started following you",
"body": "Caput supplanto confero illo.",
"isRead": false,
"link": "https://example.com/follow/2LXcvm4l",
"createdAt": "2026-03-30T17:40:01.268Z"
}