Activity #1902
User #155 follow Van Crona started following you
1/26/2026, 7:37:16 AM
Overview
notifications / #1902
User #155 follow Van Crona started following you
1/26/2026, 7:37:16 AM
User #155 follow Van Crona started following you
1/26/2026, 7:37:16 AM
View recordUser #155 follow Van Crona started following you · 1/26/2026, 7:37:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1902" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1902" ); 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/1902"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1902"
)
notification = res.json() Response
{
"id": 1902,
"userId": 155,
"type": "follow",
"title": "Van Crona started following you",
"body": "Bellicus vis atque conturbo amita debeo.",
"isRead": false,
"link": "https://example.com/follow/QgUYiMle",
"createdAt": "2026-01-26T07:37:16.610Z"
}