Skip to content
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

Step 01

Pick a connector

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

Step 02

Choose a plan

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

Step 03

Get your token

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

Step 04

Attach and query

ATTACH the worker with your token and query its tables and functions like any other catalog.

The attach flow

From token to rows

One extension, one secret, one ATTACH. After that the connector's tables behave like any other catalog in the session.

No token needed

Free connectors like Citi Bike skip the secret entirely — just ATTACH and query.

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;
Plans

Pricing that matches the connector

Contact us for pricing on any connector. These are the plan types you’ll see across the Orchard — 7 listings and growing.

  • Contact us for current pricing on any connector — no bundle you have to grow into.
  • Billing, credentials, and worker hosting are handled for you.
  • Free connectors attach with no token and no subscription at all.
  • Cancel a subscription and the ATTACH simply stops resolving.
Free

Contact us for details

Public-data and demo connectors.

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

Contact us for details

Production connectors, billed per worker.

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

Contact us for details

Governance, federation, and custom needs.

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