Activity #167
User #121 follow Earlene Wisozk started following you
1/10/2026, 7:32:22 AM
Overview
notifications / #167
User #121 follow Earlene Wisozk started following you
1/10/2026, 7:32:22 AM
User #121 follow Earlene Wisozk started following you
1/10/2026, 7:32:22 AM
View recordUser #121 follow Earlene Wisozk started following you · 1/10/2026, 7:32:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/167" ); 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/167"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/167"
)
notification = res.json() Response
{
"id": 167,
"userId": 121,
"type": "follow",
"title": "Earlene Wisozk started following you",
"body": "Termes ascisco succurro vindico ullus studio defendo iste videlicet.",
"isRead": false,
"link": "https://example.com/follow/epfLPCDT",
"createdAt": "2026-01-10T07:32:22.322Z"
}