Activity #553
User #144 follow Daisy Kuhic started following you
7/27/2025, 5:30:21 AM
Overview
notifications / #553
User #144 follow Daisy Kuhic started following you
7/27/2025, 5:30:21 AM
User #144 follow Daisy Kuhic started following you
7/27/2025, 5:30:21 AM
View recordUser #144 follow Daisy Kuhic started following you · 7/27/2025, 5:30:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/553" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/553" ); 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/553"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/553"
)
notification = res.json() Response
{
"id": 553,
"userId": 144,
"type": "follow",
"title": "Daisy Kuhic started following you",
"body": "Cito ago conculco cum ipsam saepe caput thesaurus caelestis tremo.",
"isRead": false,
"link": "https://example.com/follow/z9FPg0hc",
"createdAt": "2025-07-27T05:30:21.424Z"
}