Activity #52
User #17 follow Matt Kuhic started following you
11/30/2025, 1:53:44 PM
Overview
notifications / #52
User #17 follow Matt Kuhic started following you
11/30/2025, 1:53:44 PM
User #17 follow Matt Kuhic started following you
11/30/2025, 1:53:44 PM
View recordUser #17 follow Matt Kuhic started following you · 11/30/2025, 1:53:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/52" ); 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/52"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/52"
)
notification = res.json() Response
{
"id": 52,
"userId": 17,
"type": "follow",
"title": "Matt Kuhic started following you",
"body": "Nostrum corrigo cumque creator tendo sufficio cras tui possimus.",
"isRead": true,
"link": "https://example.com/follow/SNBr8bhy",
"createdAt": "2025-11-30T13:53:44.138Z"
}