Activity #1464
User #227 follow Ericka DuBuque started following you
9/25/2025, 2:39:42 PM
Overview
notifications / #1464
User #227 follow Ericka DuBuque started following you
9/25/2025, 2:39:42 PM
User #227 follow Ericka DuBuque started following you
9/25/2025, 2:39:42 PM
View recordUser #227 follow Ericka DuBuque started following you · 9/25/2025, 2:39:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1464" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1464" ); 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/1464"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1464"
)
notification = res.json() Response
{
"id": 1464,
"userId": 227,
"type": "follow",
"title": "Ericka DuBuque started following you",
"body": "Explicabo asper delego defendo aeneus architecto modi.",
"isRead": false,
"link": "https://example.com/follow/AG32gRzR",
"createdAt": "2025-09-25T14:39:42.547Z"
}