Activity #1545
User #228 follow Ericka DuBuque started following you
10/19/2025, 5:14:02 PM
Overview
notifications / #1545
User #228 follow Ericka DuBuque started following you
10/19/2025, 5:14:02 PM
User #228 follow Ericka DuBuque started following you
10/19/2025, 5:14:02 PM
View recordUser #228 follow Ericka DuBuque started following you · 10/19/2025, 5:14:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1545" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1545" ); 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/1545"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1545"
)
notification = res.json() Response
{
"id": 1545,
"userId": 228,
"type": "follow",
"title": "Ericka DuBuque started following you",
"body": "Damno paulatim convoco caries comedo.",
"isRead": false,
"link": "https://example.com/follow/Ww-4yqJt",
"createdAt": "2025-10-19T17:14:02.401Z"
}