Batch Enrich
Enrich each contact in a list via an upstream API. Demonstrates lookup fan-out (one call per item).
Enrich each contact in a list via an upstream API. Demonstrates lookup fan-out (one call per item).
Accept a posted CSV body, parse it into rows, and bulk-insert them into a Postgres contacts table. Demonstrates parse_csv over the raw request body plus a lookup fan-out insert.
Ingest an event, flag it high-value (amount > 100) with the math transform, and insert only when it is. Demonstrates the math transform and a conditional insert.
Full CRUD for a products table backed by MySQL (create, list, update, delete). Demonstrates the mysql driver with ? placeholders and input: a|params| pagination.
A public endpoint rate-limited to 10 requests/min per IP. Demonstrates the native network rate_limit policy.
Fetch an RSS feed and return its parsed items. Demonstrates parsing an XML response with http data_type: xml.
Nightly job that deletes rows older than 30 days and posts a Slack summary. Demonstrates a cron schedule on an interface.
Summarise subscriptions — monthly recurring revenue (sum of amounts) and count grouped by status — and compute days-since a signup date. Demonstrates the aggregate transform and the ->days_since date derive.
User signup and login with bcrypt password hashing and a signed JWT. Demonstrates bcrypt, bcrypt_verify, add_jwt.