Activity #1062
User #100 follow Mara Johnson started following you
4/20/2026, 2:30:35 AM
Overview
notifications / #1062
User #100 follow Mara Johnson started following you
4/20/2026, 2:30:35 AM
User #100 follow Mara Johnson started following you
4/20/2026, 2:30:35 AM
View recordUser #100 follow Mara Johnson started following you · 4/20/2026, 2:30:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1062" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1062" ); 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/1062"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1062"
)
notification = res.json() Response
{
"id": 1062,
"userId": 100,
"type": "follow",
"title": "Mara Johnson started following you",
"body": "Traho amitto alius ancilla deduco subiungo stultus carus comedo.",
"isRead": true,
"link": "https://example.com/follow/XemVioWs",
"createdAt": "2026-04-20T02:30:35.910Z"
}