Activity #1967
User #124 follow Cayla Farrell started following you
3/9/2026, 6:50:05 AM
Overview
notifications / #1967
User #124 follow Cayla Farrell started following you
3/9/2026, 6:50:05 AM
User #124 follow Cayla Farrell started following you
3/9/2026, 6:50:05 AM
View recordUser #124 follow Cayla Farrell started following you · 3/9/2026, 6:50:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1967" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1967" ); 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/1967"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1967"
)
notification = res.json() Response
{
"id": 1967,
"userId": 124,
"type": "follow",
"title": "Cayla Farrell started following you",
"body": "Argentum commodi concedo sustineo spoliatio commemoro candidus apto synagoga adaugeo.",
"isRead": false,
"link": "https://example.com/follow/TDUovk-Z",
"createdAt": "2026-03-09T06:50:05.374Z"
}