Activity #1775
User #91 follow Jameson Considine started following you
2/4/2026, 3:15:02 AM
Overview
notifications / #1775
User #91 follow Jameson Considine started following you
2/4/2026, 3:15:02 AM
User #91 follow Jameson Considine started following you
2/4/2026, 3:15:02 AM
View recordUser #91 follow Jameson Considine started following you · 2/4/2026, 3:15:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1775" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1775" ); 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/1775"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1775"
)
notification = res.json() Response
{
"id": 1775,
"userId": 91,
"type": "follow",
"title": "Jameson Considine started following you",
"body": "Admiratio virgo tabgo possimus cuius cruentus.",
"isRead": true,
"link": "https://example.com/follow/LrVunJwt",
"createdAt": "2026-02-04T03:15:02.408Z"
}