Pull & write · REST API

ESG / CSR analytics pipeline

Not every integration is push. A corporate social-value team doesn't want a webhook per act — it wants to pull the whole feed on a schedule and roll it into an impact report. This client polls GET /api/v1/acts/feed, advances a ?since= cursor each time, and de-duplicates by act id so it only ever aggregates each act once. Contrast with the webhook demos: there is no EventSource here — the pull loop is the whole mechanism.

Demo shortcutthis page calls the API with a live key from the browser so you can watch it work. A real pipeline keeps the key server-side and runs the poll from a cron job, not the client.