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

1

Pick a connector

Browse the Orchard and choose the connector that exposes the system you need.

2

Choose a plan

Free connectors need no subscription. Paid connectors bill per worker — monthly or annually.

3

Get your token

Subscribing issues an Orchard token. Store it as an environment variable or a DuckDB secret.

4

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.

Free

$0

Public-data and demo connectors.

  • No token required
  • Community support
  • Great for learning & prototypes
Browse free connectors
Most common Subscription

From $29/mo

Production connectors, billed per worker.

  • Hosted, managed worker
  • Token-based auth
  • Email support & SLAs
  • Cancel anytime
Browse connectors
Enterprise

Contact us

Governance, federation, and custom needs.

  • Private deployment options
  • SSO & audit logging
  • Custom connectors
  • Dedicated support
Talk to sales

The attach flow

From token to rows

subscribe.sql
-- 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.