Activity #225
User #132 follow Theresia Collins started following you
9/13/2025, 5:45:15 PM
Overview
notifications / #225
User #132 follow Theresia Collins started following you
9/13/2025, 5:45:15 PM
User #132 follow Theresia Collins started following you
9/13/2025, 5:45:15 PM
View recordUser #132 follow Theresia Collins started following you · 9/13/2025, 5:45:15 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/225" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/225" ); 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/225"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/225"
)
notification = res.json() Response
{
"id": 225,
"userId": 132,
"type": "follow",
"title": "Theresia Collins started following you",
"body": "Contigo demoror solio thymum varius conor.",
"isRead": false,
"link": "https://example.com/follow/rJbn7PZq",
"createdAt": "2025-09-13T17:45:15.746Z"
}