Activity #860
User #68 follow Selina Flatley started following you
6/28/2025, 8:58:33 AM
Overview
notifications / #860
User #68 follow Selina Flatley started following you
6/28/2025, 8:58:33 AM
User #68 follow Selina Flatley started following you
6/28/2025, 8:58:33 AM
View recordUser #68 follow Selina Flatley started following you · 6/28/2025, 8:58:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/860" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/860" ); 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/860"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/860"
)
notification = res.json() Response
{
"id": 860,
"userId": 68,
"type": "follow",
"title": "Selina Flatley started following you",
"body": "Pecus triduana voluptates pauper.",
"isRead": true,
"link": "https://example.com/follow/Zxnz_2Ol",
"createdAt": "2025-06-28T08:58:33.535Z"
}