Activity #1093
User #148 follow Samson Stroman started following you
11/23/2025, 4:40:25 PM
Overview
notifications / #1093
User #148 follow Samson Stroman started following you
11/23/2025, 4:40:25 PM
User #148 follow Samson Stroman started following you
11/23/2025, 4:40:25 PM
View recordUser #148 follow Samson Stroman started following you · 11/23/2025, 4:40:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1093" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1093" ); 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/1093"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1093"
)
notification = res.json() Response
{
"id": 1093,
"userId": 148,
"type": "follow",
"title": "Samson Stroman started following you",
"body": "Valde victus vado coma trado adeo verus.",
"isRead": true,
"link": "https://example.com/follow/SRDh-NJG",
"createdAt": "2025-11-23T16:40:25.811Z"
}