Activity #1549
User #219 follow Carmel Schultz started following you
10/21/2025, 8:09:33 AM
Overview
notifications / #1549
User #219 follow Carmel Schultz started following you
10/21/2025, 8:09:33 AM
User #219 follow Carmel Schultz started following you
10/21/2025, 8:09:33 AM
View recordUser #219 follow Carmel Schultz started following you · 10/21/2025, 8:09:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1549" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1549" ); 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/1549"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1549"
)
notification = res.json() Response
{
"id": 1549,
"userId": 219,
"type": "follow",
"title": "Carmel Schultz started following you",
"body": "Claustrum mollitia denuncio adversus coaegresco vulticulus.",
"isRead": true,
"link": "https://example.com/follow/TsrskEP9",
"createdAt": "2025-10-21T08:09:33.164Z"
}