Activity #229
User #171 follow Jamil Mayer started following you
4/29/2026, 9:34:02 AM
Overview
notifications / #229
User #171 follow Jamil Mayer started following you
4/29/2026, 9:34:02 AM
User #171 follow Jamil Mayer started following you
4/29/2026, 9:34:02 AM
View recordUser #171 follow Jamil Mayer started following you · 4/29/2026, 9:34:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/229" ); 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/229"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/229"
)
notification = res.json() Response
{
"id": 229,
"userId": 171,
"type": "follow",
"title": "Jamil Mayer started following you",
"body": "Paulatim velociter vestrum id acervus.",
"isRead": true,
"link": "https://example.com/follow/GIQLLMyp",
"createdAt": "2026-04-29T09:34:02.573Z"
}