Activity #245
User #175 follow Mike Zemlak started following you
9/7/2025, 12:07:59 PM
Overview
notifications / #245
User #175 follow Mike Zemlak started following you
9/7/2025, 12:07:59 PM
User #175 follow Mike Zemlak started following you
9/7/2025, 12:07:59 PM
View recordUser #175 follow Mike Zemlak started following you · 9/7/2025, 12:07:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/245" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/245" ); 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/245"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/245"
)
notification = res.json() Response
{
"id": 245,
"userId": 175,
"type": "follow",
"title": "Mike Zemlak started following you",
"body": "Color territo defendo voluptatibus damnatio crustulum tepidus demergo.",
"isRead": true,
"link": "https://example.com/follow/FqFHPPN_",
"createdAt": "2025-09-07T12:07:59.830Z"
}