Activity #1321
User #148 follow Mike Zemlak started following you
3/2/2026, 5:47:07 PM
Overview
notifications / #1321
User #148 follow Mike Zemlak started following you
3/2/2026, 5:47:07 PM
User #148 follow Mike Zemlak started following you
3/2/2026, 5:47:07 PM
View recordUser #148 follow Mike Zemlak started following you · 3/2/2026, 5:47:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1321" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1321" ); 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/1321"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1321"
)
notification = res.json() Response
{
"id": 1321,
"userId": 148,
"type": "follow",
"title": "Mike Zemlak started following you",
"body": "Depono cui cogo.",
"isRead": true,
"link": "https://example.com/follow/z6f50Dgk",
"createdAt": "2026-03-02T17:47:07.375Z"
}