Activity #1599
User #244 follow Rupert Lebsack started following you
9/25/2025, 2:52:48 AM
Overview
notifications / #1599
User #244 follow Rupert Lebsack started following you
9/25/2025, 2:52:48 AM
User #244 follow Rupert Lebsack started following you
9/25/2025, 2:52:48 AM
View recordUser #244 follow Rupert Lebsack started following you · 9/25/2025, 2:52:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1599" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1599" ); 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/1599"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1599"
)
notification = res.json() Response
{
"id": 1599,
"userId": 244,
"type": "follow",
"title": "Rupert Lebsack started following you",
"body": "Admiratio comes sed summa curo.",
"isRead": true,
"link": "https://example.com/follow/Awy2bGUo",
"createdAt": "2025-09-25T02:52:48.967Z"
}