Activity #849
User #96 follow Sammy Schmidt started following you
3/5/2026, 12:04:05 AM
Overview
notifications / #849
User #96 follow Sammy Schmidt started following you
3/5/2026, 12:04:05 AM
User #96 follow Sammy Schmidt started following you
3/5/2026, 12:04:05 AM
View recordUser #96 follow Sammy Schmidt started following you · 3/5/2026, 12:04:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/849" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/849" ); 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/849"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/849"
)
notification = res.json() Response
{
"id": 849,
"userId": 96,
"type": "follow",
"title": "Sammy Schmidt started following you",
"body": "Voluntarius corroboro concido atrox utilis.",
"isRead": false,
"link": "https://example.com/follow/oiUWMIXK",
"createdAt": "2026-03-05T00:04:05.920Z"
}