Activity #577
User #81 follow Casimir Smitham started following you
2/15/2026, 1:11:15 AM
Overview
notifications / #577
User #81 follow Casimir Smitham started following you
2/15/2026, 1:11:15 AM
User #81 follow Casimir Smitham started following you
2/15/2026, 1:11:15 AM
View recordUser #81 follow Casimir Smitham started following you · 2/15/2026, 1:11:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/577" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/577" ); 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/577"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/577"
)
notification = res.json() Response
{
"id": 577,
"userId": 81,
"type": "follow",
"title": "Casimir Smitham started following you",
"body": "Surculus delicate denego architecto.",
"isRead": true,
"link": "https://example.com/follow/dZpLspXp",
"createdAt": "2026-02-15T01:11:15.512Z"
}