Activity #845
User #136 follow Van Crona started following you
6/27/2025, 2:41:48 PM
Overview
notifications / #845
User #136 follow Van Crona started following you
6/27/2025, 2:41:48 PM
User #136 follow Van Crona started following you
6/27/2025, 2:41:48 PM
View recordUser #136 follow Van Crona started following you · 6/27/2025, 2:41:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/845" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/845" ); 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/845"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/845"
)
notification = res.json() Response
{
"id": 845,
"userId": 136,
"type": "follow",
"title": "Van Crona started following you",
"body": "Apud vaco demitto sodalitas.",
"isRead": true,
"link": "https://example.com/follow/fpsM5G5J",
"createdAt": "2025-06-27T14:41:48.377Z"
}