Activity #714
User #189 follow Sammy Schmidt started following you
1/22/2026, 8:38:07 PM
Overview
notifications / #714
User #189 follow Sammy Schmidt started following you
1/22/2026, 8:38:07 PM
User #189 follow Sammy Schmidt started following you
1/22/2026, 8:38:07 PM
View recordUser #189 follow Sammy Schmidt started following you · 1/22/2026, 8:38:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/714" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/714" ); 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/714"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/714"
)
notification = res.json() Response
{
"id": 714,
"userId": 189,
"type": "follow",
"title": "Sammy Schmidt started following you",
"body": "Tremo cariosus conculco.",
"isRead": false,
"link": "https://example.com/follow/G9kZZK2W",
"createdAt": "2026-01-22T20:38:07.461Z"
}