Skip to main content

Airbyte Orb Connector for AI platforms

Project description

Orb

The Orb agent connector is a Python package that equips AI agents to interact with Orb through strongly typed, well-documented tools. It's ready to use directly in your Python app, in an agent framework, or exposed through an MCP.

Orb is a usage-based billing platform that enables businesses to implement flexible pricing models, track customer usage, and manage subscriptions. This connector provides access to customers, subscriptions, plans, and invoices for billing analytics and customer management.

Example questions

The Orb connector is optimized to handle prompts like these.

  • Show me all my customers in Orb
  • List all active subscriptions
  • What plans are available?
  • Show me recent invoices
  • Show me details for a recent customer
  • What is the status of a recent subscription?
  • Show me the pricing details for a plan
  • Confirm the Stripe ID linked to a customer
  • What is the payment provider ID for a customer?
  • List all invoices for a specific customer
  • List all subscriptions for customer XYZ
  • Show all active subscriptions for a specific customer
  • What subscriptions does customer {external_customer_id} have?
  • Pull all invoices from the last month
  • Show invoices created after {date}
  • List all paid invoices for customer {customer_id}
  • What invoices are in draft status?
  • Show all issued invoices for subscription {subscription_id}

Unsupported questions

The Orb connector isn't currently able to handle prompts like these.

  • Create a new customer in Orb
  • Update subscription details
  • Delete a customer record
  • Send an invoice to a customer
  • Filter subscriptions by plan name (must filter client-side after listing)
  • Pull customers billed for specific products (must examine invoice line_items client-side)

Installation

uv pip install airbyte-agent-orb

Usage

Connectors can run in open source or hosted mode.

Open source

In open source mode, you provide API credentials directly to the connector.

from airbyte_agent_orb import OrbConnector
from airbyte_agent_orb.models import OrbAuthConfig

connector = OrbConnector(
    auth_config=OrbAuthConfig(
        api_key="<Your Orb API key>"
    )
)

@agent.tool_plain # assumes you're using Pydantic AI
@OrbConnector.tool_utils
async def orb_execute(entity: str, action: str, params: dict | None = None):
    return await connector.execute(entity, action, params or {})

Hosted

In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead. If your Airbyte client can access multiple organizations, also set organization_id.

This example assumes you've already authenticated your connector with Airbyte. See Authentication to learn more about authenticating. If you need a step-by-step guide, see the hosted execution tutorial.

from airbyte_agent_orb import OrbConnector, AirbyteAuthConfig

connector = OrbConnector(
    auth_config=AirbyteAuthConfig(
        customer_name="<your_customer_name>",
        organization_id="<your_organization_id>",  # Optional for multi-org clients
        airbyte_client_id="<your-client-id>",
        airbyte_client_secret="<your-client-secret>"
    )
)

@agent.tool_plain # assumes you're using Pydantic AI
@OrbConnector.tool_utils
async def orb_execute(entity: str, action: str, params: dict | None = None):
    return await connector.execute(entity, action, params or {})

Full documentation

Entities and actions

This connector supports the following entities and actions. For more details, see this connector's full reference documentation.

Entity Actions
Customers List, Get, Search
Subscriptions List, Get, Search
Plans List, Get, Search
Invoices List, Get, Search

Authentication

For all authentication options, see the connector's authentication documentation.

Orb API docs

See the official Orb API reference.

Version information

  • Package version: 0.1.56
  • Connector version: 0.1.6
  • Generated with Connector SDK commit SHA: 0bc9ab764a18fc48c3b595e69ba87a5337c63d51
  • Changelog: View changelog

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

airbyte_agent_orb-0.1.56.tar.gz (160.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

airbyte_agent_orb-0.1.56-py3-none-any.whl (186.9 kB view details)

Uploaded Python 3

File details

Details for the file airbyte_agent_orb-0.1.56.tar.gz.

File metadata

  • Download URL: airbyte_agent_orb-0.1.56.tar.gz
  • Upload date:
  • Size: 160.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for airbyte_agent_orb-0.1.56.tar.gz
Algorithm Hash digest
SHA256 09281d85a95ade10584f27701786deb8fde54f0cfa5c8603df9b643e92337282
MD5 aa4316b26f800621e94cfe4a9f9b68db
BLAKE2b-256 8227b544cdd054f64dff482d84d48dcef17f79561ca1750399c4244a86279671

See more details on using hashes here.

File details

Details for the file airbyte_agent_orb-0.1.56-py3-none-any.whl.

File metadata

File hashes

Hashes for airbyte_agent_orb-0.1.56-py3-none-any.whl
Algorithm Hash digest
SHA256 eb7201ab96cc2a0ee3ecfe805318608e00925c0d5b8af812b4b551b3ca69e578
MD5 2dc3026bd233c7ede9dc3cea431726c4
BLAKE2b-256 44bfed63fe2a6804cc3d07e58cab617e8126e7489ed6e22639d678af849b12cf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page