For teams
Subscribe and attach in minutes
No connector infrastructure to run. Subscribe to a hosted worker, get a token, and query it from DuckDB or Haybarn with one ATTACH.
How it works
Four steps to query
Pick a connector
Browse the Orchard and choose the connector that exposes the system you need.
Choose a plan
Free connectors need no subscription. Paid connectors bill per worker — monthly or annually.
Get your token
Subscribing issues an Orchard token. Store it as an environment variable or a DuckDB secret.
Attach and query
ATTACH the worker with your token and query its tables and functions like any other catalog.
Plans
Pricing that matches the connector
Every connector lists its own price. These are the plan types you’ll see across the Orchard.
$0
Public-data and demo connectors.
- No token required
- Community support
- Great for learning & prototypes
From $29/mo
Production connectors, billed per worker.
- Hosted, managed worker
- Token-based auth
- Email support & SLAs
- Cancel anytime
Contact us
Governance, federation, and custom needs.
- Private deployment options
- SSO & audit logging
- Custom connectors
- Dedicated support
The attach flow
From token to rows
-- 1. Install the VGI extension (once)
INSTALL vgi FROM community;
LOAD vgi;
-- 2. Store your Orchard token as a secret
CREATE SECRET orchard (TYPE vgi, TOKEN 'orch_live_…');
-- 3. Attach a subscribed connector and query it
ATTACH 'kafka' AS kafka (
TYPE vgi,
LOCATION 'https://orchard.query.farm/kafka'
);
SELECT * FROM kafka.topics; Free connectors like Citi Bike skip the secret entirely — just ATTACH and query.
7 connectors and growing
Find the one you need, or ask us to build it.