Activity #1329
User #53 follow Arnaldo Friesen started following you
3/12/2026, 6:26:21 AM
Overview
notifications / #1329
User #53 follow Arnaldo Friesen started following you
3/12/2026, 6:26:21 AM
User #53 follow Arnaldo Friesen started following you
3/12/2026, 6:26:21 AM
View recordUser #53 follow Arnaldo Friesen started following you · 3/12/2026, 6:26:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1329" ); 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/1329"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1329"
)
notification = res.json() Response
{
"id": 1329,
"userId": 53,
"type": "follow",
"title": "Arnaldo Friesen started following you",
"body": "Aveho earum laboriosam quam antea.",
"isRead": true,
"link": "https://example.com/follow/qu8uW5I9",
"createdAt": "2026-03-12T06:26:21.447Z"
}