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.

.png)

About this Connector
Stripe is a payment processing platform that enables businesses to accept payments, manage subscriptions, and handle financial transactions. This connector provides access to customers for payment analytics and customer management.
CRM
Sales Analytics
Customer Data
Version Information
Package version
0.1.13
Connector version
0.1.13
SDK commit
unknown
Support Open Source
Check us out on Github and join the Airbyte community
Installation & Usage
1
Install Package
Using uv or pip
bash
uv pip install airbyte-agent-sdk
2
Import
Initialize and use
python
from airbyte_agent_sdk.connectors.stripe import StripeConnector
from airbyte_agent_sdk.connectors.stripe.models import StripeAuthConfig
connector = StripeConnector(
auth_config=StripeAuthConfig(
api_key="<Your Stripe API Key (starts with sk_test_ or sk_live_)>"
)
)3
Tool
Add tools to your agent
python
@agent.tool_plain # assumes you're using Pydantic AI
@StripeConnector.tool_utils
async def stripe_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), [Create](./REFERENCE.md#customers-create), [Get](./REFERENCE.md#customers-get), [Update](./REFERENCE.md#customers-update), [Delete](./REFERENCE.md#customers-delete), [API Search](./REFERENCE.md#customers-api_search), [Context Store Search](./REFERENCE.md#customers-context-store-search) |\n| Invoices | [List](./REFERENCE.md#invoices-list), [Create](./REFERENCE.md#invoices-create), [Get](./REFERENCE.md#invoices-get), [API Search](./REFERENCE.md#invoices-api_search), [Context Store Search](./REFERENCE.md#invoices-context-store-search) |\n| Invoice Finalizations | [Create](./REFERENCE.md#invoice-finalizations-create) |\n| Invoice Sends | [Create](./REFERENCE.md#invoice-sends-create) |\n| Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [API Search](./REFERENCE.md#charges-api_search), [Context Store Search](./REFERENCE.md#charges-context-store-search) |\n| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Create](./REFERENCE.md#subscriptions-create), [Get](./REFERENCE.md#subscriptions-get), [Update](./REFERENCE.md#subscriptions-update), [Delete](./REFERENCE.md#subscriptions-delete), [API Search](./REFERENCE.md#subscriptions-api_search), [Context Store Search](./REFERENCE.md#subscriptions-context-store-search) |\n| Refunds | [List](./REFERENCE.md#refunds-list), [Create](./REFERENCE.md#refunds-create), [Get](./REFERENCE.md#refunds-get), [Context Store Search](./REFERENCE.md#refunds-context-store-search) |\n| Products | [List](./REFERENCE.md#products-list), [Create](./REFERENCE.md#products-create), [Get](./REFERENCE.md#products-get), [Update](./REFERENCE.md#products-update), [Delete](./REFERENCE.md#products-delete), [API Search](./REFERENCE.md#products-api_search) |\n| Balance | [Get](./REFERENCE.md#balance-get) |\n| Balance Transactions | [List](./REFERENCE.md#balance-transactions-list), [Get](./REFERENCE.md#balance-transactions-get) |\n| Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Create](./REFERENCE.md#payment-intents-create), [Get](./REFERENCE.md#payment-intents-get), [Update](./REFERENCE.md#payment-intents-update), [API Search](./REFERENCE.md#payment-intents-api_search) |\n| Payment Intent Confirmations | [Create](./REFERENCE.md#payment-intent-confirmations-create) |\n| Payment Intent Cancellations | [Create](./REFERENCE.md#payment-intent-cancellations-create) |\n| Prices | [Create](./REFERENCE.md#prices-create) |\n| Checkout Sessions | [Create](./REFERENCE.md#checkout-sessions-create) |\n| Payment Method Attachments | [Create](./REFERENCE.md#payment-method-attachments-create) |\n| Disputes | [List](./REFERENCE.md#disputes-list), [Get](./REFERENCE.md#disputes-get) |\n| Payouts | [List](./REFERENCE.md#payouts-list), [Get](./REFERENCE.md#payouts-get) |
Example Prompts
Lorem ipsum
List customers created in the last 7 days - Show me details for a recent customer - List recent charges - Show me details for a recent charge - List recent invoices - List active subscriptions - Create a payment intent for $50.00 USD - Create a new invoice for customer cus_123 - Create a subscription for customer cus_123 with price price_456 - Create a price of $29.99/month for product prod_789 - Create a checkout session for price price_456 - Cancel payment intent pi_123 - Finalize invoice inv_123 - Show me my top 10 customers by total revenue this month - List all customers who have spent over $5,000 in the last quarter - Analyze payment trends for my Stripe customers - Identify which customers have the most consistent subscription payments - Give me insights into my customer retention rates - Summarize the payment history for \{customer\} - Compare customer spending patterns from last month to this month - Show me details about my highest-value Stripe customers - What are the key financial insights from my customer base? - Break down my customers by their average transaction value
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.
The Stripe connector supports API key authentication in open source mode, using your Stripe API key (starting with sktest or sklive). In hosted mode, credentials are stored securely in Airbyte Cloud and you authenticate using your Airbyte client ID and client secret.
Can I use this connector with any AI agent framework?
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?
Yes, the Stripe connector supports write operations. It can create payment intents, invoices, subscriptions, prices, checkout sessions, refunds, products, and customers, as well as update and delete certain entities. The one noted unsupported operation is sending payment reminders to customers.
How is this different from the Airbyte data connector?
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?
The hosted version with secure credential storage through Airbyte Cloud is already available. See the hosted usage section in the documentation for setup instructions.