Activity #46
User #81 follow Glenna Keebler started following you
9/5/2025, 10:54:56 PM
Overview
notifications / #46
User #81 follow Glenna Keebler started following you
9/5/2025, 10:54:56 PM
User #81 follow Glenna Keebler started following you
9/5/2025, 10:54:56 PM
View recordUser #81 follow Glenna Keebler started following you · 9/5/2025, 10:54:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/46" ); 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/46"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/46"
)
notification = res.json() Response
{
"id": 46,
"userId": 81,
"type": "follow",
"title": "Glenna Keebler started following you",
"body": "Patrocinor torqueo deprecator cunabula comis terga terreo.",
"isRead": false,
"link": null,
"createdAt": "2025-09-05T22:54:56.458Z"
}