Activity #541
User #130 follow Selina Flatley started following you
10/19/2025, 9:02:59 PM
Overview
notifications / #541
User #130 follow Selina Flatley started following you
10/19/2025, 9:02:59 PM
User #130 follow Selina Flatley started following you
10/19/2025, 9:02:59 PM
View recordUser #130 follow Selina Flatley started following you · 10/19/2025, 9:02:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/541" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/541" ); 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/541"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/541"
)
notification = res.json() Response
{
"id": 541,
"userId": 130,
"type": "follow",
"title": "Selina Flatley started following you",
"body": "Abbas vesper umquam vulgus centum admoneo.",
"isRead": true,
"link": "https://example.com/follow/I0ToV9gh",
"createdAt": "2025-10-19T21:02:59.329Z"
}