Activity #1633
User #241 follow Amparo Dietrich started following you
9/30/2025, 10:09:20 PM
Overview
notifications / #1633
User #241 follow Amparo Dietrich started following you
9/30/2025, 10:09:20 PM
User #241 follow Amparo Dietrich started following you
9/30/2025, 10:09:20 PM
View recordUser #241 follow Amparo Dietrich started following you · 9/30/2025, 10:09:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1633" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1633" ); 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/1633"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1633"
)
notification = res.json() Response
{
"id": 1633,
"userId": 241,
"type": "follow",
"title": "Amparo Dietrich started following you",
"body": "Ter non vacuus aequitas.",
"isRead": true,
"link": null,
"createdAt": "2025-09-30T22:09:20.742Z"
}