Activity #1394
User #56 follow Amya Powlowski started following you
10/17/2025, 1:07:16 AM
Overview
notifications / #1394
User #56 follow Amya Powlowski started following you
10/17/2025, 1:07:16 AM
User #56 follow Amya Powlowski started following you
10/17/2025, 1:07:16 AM
View recordUser #56 follow Amya Powlowski started following you · 10/17/2025, 1:07:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1394" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1394" ); 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/1394"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1394"
)
notification = res.json() Response
{
"id": 1394,
"userId": 56,
"type": "follow",
"title": "Amya Powlowski started following you",
"body": "Ambitus in dignissimos aeneus damno.",
"isRead": false,
"link": "https://example.com/follow/B4gGfpfE",
"createdAt": "2025-10-17T01:07:16.338Z"
}