Give agents tools for secure, real-time access to fetch, search, write, and sync across every system, with replication, entity mapping, and auth built-in.


About this 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.
CRM
Sales Analytics
Customer Data
Version Information
Package version
0.1.4
Connector version
0.1.1
SDK commit
5b20f488dec0e8f29410823753106603c23a4b65
Support Open Source
Star us on GitHub to help grow the Airbyte community
Installation & Usage
1
Install Package
Using uv or pip
bash
uv pip install airbyte-agent-orb
2
Import
Initialize and use
python
from airbyte_agent_orb import OrbConnector
from airbyte_agent_orb.models import OrbAuthConfig
connector = OrbConnector(
auth_config=OrbAuthConfig(
api_key="<Your Orb API key>"
)
)3
Tool
Add tools to your agent
python
@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 {})Supported Entities & Actions
Lorem ipsum
Lorem ipsum
| Entity | Actions |\n|--------|---------|\n| Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get) |\n| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get) |\n| Plans | [List](./REFERENCE.md#plans-list), [Get](./REFERENCE.md#plans-get) |\n| Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get) |
Example Prompts
Lorem ipsum
Show me all my customers in Orb - List all active subscriptions - What plans are available? - Show me recent invoices - Get details for customer \{customer_id\} - What is the status of subscription \{subscription_id\}? - List all invoices for a specific customer - Show me the pricing details for plan \{plan_id\} - List all subscriptions for customer XYZ - Show all active subscriptions for a specific customer - What subscriptions does customer \{external_customer_id\} have? - Confirm the Stripe ID linked to this customer - What is the payment provider ID for customer \{customer_id\}? - 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\}
Why Airbyte for AI Agents?
Built for production AI workloads with enterprise-grade reliability
Agent-Native Design
Structured, LLM-friendly schemas optimized for AI agent consumption with natural language query support.
Secure Authentication
Built-in OAuth 2.0 handling with automatic token refresh. No hard-coded credentials.
Production Ready
Battle-tested connectors with comprehensive error handling, logging, and retry logic.
Open Source
Fully open source under the MIT license. Contribute, customize, and extend freely.
Works with your favorite frameworks
🦜
LangChain
🦙
LlamaIndex
🤖
CrewAI
⚡
AutoGen
🧠
OpenAI Agents SDK
🔮
Claude Agents SDK
Frequently Asked Questions
Didn't find your answer? Please don't hesitate to reach out.
What authentication methods does the orb connector support?
The connector supports API key authentication. You provide your Orb API key either directly in open source mode or store it securely through Airbyte Cloud in hosted mode.
Can I use this connector with any AI agent framework?
What AI agent frameworks is this connector compatible with?
The connector is compatible with any Python-based AI agent framework including LangChain, LlamaIndex, CrewAI, Pydantic AI, and custom implementations.
Does this connector support write operations?
Does the orb connector support write operations?
No, the connector currently focuses on read operations only. It does not support creating, updating, or deleting customers, subscriptions, plans, or invoices. Write support may be added in future versions.
How is this different from the Airbyte data connector?
How is this different from traditional Airbyte connectors?
Agent connectors are specifically designed for AI agents and LLM applications. They provide natural language interfaces, optimized response formats, and seamless integration with agent frameworks, unlike traditional ETL-focused connectors.
Will there be a platform for agent connectors?
When will the hosted version be available?
The hosted version with secure credential storage through Airbyte Cloud is already available. See the hosted usage section in the documentation for setup instructions.