Activity #260
User #88 follow Ressie Howell-Hodkiewicz started following you
11/2/2025, 12:02:49 PM
Overview
notifications / #260
User #88 follow Ressie Howell-Hodkiewicz started following you
11/2/2025, 12:02:49 PM
User #88 follow Ressie Howell-Hodkiewicz started following you
11/2/2025, 12:02:49 PM
View recordUser #88 follow Ressie Howell-Hodkiewicz started following you · 11/2/2025, 12:02:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/260" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/260" ); 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/260"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/260"
)
notification = res.json() Response
{
"id": 260,
"userId": 88,
"type": "follow",
"title": "Ressie Howell-Hodkiewicz started following you",
"body": "Ante paens sollicito votum.",
"isRead": false,
"link": "https://example.com/follow/UAokBsgy",
"createdAt": "2025-11-02T12:02:49.585Z"
}