Activity #1646
User #156 follow Antoinette Greenfelder started following you
11/18/2025, 12:07:55 AM
Overview
notifications / #1646
User #156 follow Antoinette Greenfelder started following you
11/18/2025, 12:07:55 AM
User #156 follow Antoinette Greenfelder started following you
11/18/2025, 12:07:55 AM
View recordUser #156 follow Antoinette Greenfelder started following you · 11/18/2025, 12:07:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1646" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1646" ); 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/1646"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1646"
)
notification = res.json() Response
{
"id": 1646,
"userId": 156,
"type": "follow",
"title": "Antoinette Greenfelder started following you",
"body": "Adfero tergeo harum.",
"isRead": false,
"link": "https://example.com/follow/KmW8ClM0",
"createdAt": "2025-11-18T00:07:55.536Z"
}