Activity #1393
User #175 follow Sarah West started following you
1/1/2026, 4:12:27 PM
Overview
notifications / #1393
User #175 follow Sarah West started following you
1/1/2026, 4:12:27 PM
User #175 follow Sarah West started following you
1/1/2026, 4:12:27 PM
View recordUser #175 follow Sarah West started following you · 1/1/2026, 4:12:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1393" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1393" ); 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/1393"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1393"
)
notification = res.json() Response
{
"id": 1393,
"userId": 175,
"type": "follow",
"title": "Sarah West started following you",
"body": "Acquiro claro tolero solitudo culpo.",
"isRead": false,
"link": "https://example.com/follow/LgcsloRd",
"createdAt": "2026-01-01T16:12:27.841Z"
}