Activity #1847
User #191 follow Conner Bernhard started following you
7/21/2025, 3:56:29 AM
Overview
notifications / #1847
User #191 follow Conner Bernhard started following you
7/21/2025, 3:56:29 AM
User #191 follow Conner Bernhard started following you
7/21/2025, 3:56:29 AM
View recordUser #191 follow Conner Bernhard started following you · 7/21/2025, 3:56:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1847" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1847" ); 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/1847"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1847"
)
notification = res.json() Response
{
"id": 1847,
"userId": 191,
"type": "follow",
"title": "Conner Bernhard started following you",
"body": "Ventito verbum appello tamdiu vito adduco eum.",
"isRead": true,
"link": "https://example.com/follow/RjdoV8Pg",
"createdAt": "2025-07-21T03:56:29.386Z"
}