Activity #91
User #91 follow Tabitha Ruecker started following you
7/23/2025, 2:56:34 PM
Overview
notifications / #91
User #91 follow Tabitha Ruecker started following you
7/23/2025, 2:56:34 PM
User #91 follow Tabitha Ruecker started following you
7/23/2025, 2:56:34 PM
View recordUser #91 follow Tabitha Ruecker started following you · 7/23/2025, 2:56:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/91" ); 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/91"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/91"
)
notification = res.json() Response
{
"id": 91,
"userId": 91,
"type": "follow",
"title": "Tabitha Ruecker started following you",
"body": "Bellum sumo attollo atrox cicuta sulum aduro ventus terreo.",
"isRead": true,
"link": "https://example.com/follow/Qn4Ijnmp",
"createdAt": "2025-07-23T14:56:34.560Z"
}