Activity #1216
User #160 follow Ken Towne started following you
8/1/2025, 7:04:58 PM
Overview
notifications / #1216
User #160 follow Ken Towne started following you
8/1/2025, 7:04:58 PM
User #160 follow Ken Towne started following you
8/1/2025, 7:04:58 PM
View recordUser #160 follow Ken Towne started following you · 8/1/2025, 7:04:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1216" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1216" ); 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/1216"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1216"
)
notification = res.json() Response
{
"id": 1216,
"userId": 160,
"type": "follow",
"title": "Ken Towne started following you",
"body": "Eveniet talis crudelis baiulus omnis dolor eveniet perspiciatis solus tam.",
"isRead": true,
"link": "https://example.com/follow/boTA6cJQ",
"createdAt": "2025-08-01T19:04:58.734Z"
}