Airbyte Orb Connector for AI platforms
Project description
Orb agent connector
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.
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(
external_user_id="<your_external_user_id>",
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 and configuration
For all authentication and configuration options, see the connector's authentication documentation.
Orb API docs
See the official Orb API reference.
Version information
- Package version: 0.1.29
- Connector version: 0.1.4
- Generated with Connector SDK commit SHA: d6f8bda46f894a3a187d33ccfce0ebe14771ea42
- Changelog: View changelog
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file airbyte_agent_orb-0.1.29.tar.gz.
File metadata
- Download URL: airbyte_agent_orb-0.1.29.tar.gz
- Upload date:
- Size: 138.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
184c6c050b8ef2a9475dd78a7dc984927633a295001cc7f755c8917c0c2950fd
|
|
| MD5 |
3d0f06767572d143443bc3dba3bb1334
|
|
| BLAKE2b-256 |
3e8f22218837d2a5213f5e3ba577b3bebd4858c287d6aa95558643e83a6f0889
|
File details
Details for the file airbyte_agent_orb-0.1.29-py3-none-any.whl.
File metadata
- Download URL: airbyte_agent_orb-0.1.29-py3-none-any.whl
- Upload date:
- Size: 163.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51803ea1d5d92e46d91a6590eea6fc6205d79debeb7c089aa8b386d3061b428a
|
|
| MD5 |
8c43870a8962ebac620ca287a317d7cb
|
|
| BLAKE2b-256 |
50bf0373c6cb7bbde268d7d9f28331ba837c192d42d8bb865af5236c39d21677
|