Airbyte Stripe Connector for AI platforms
Project description
Stripe agent 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.
Example questions
The Stripe connector is optimized to handle prompts like these.
- 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
Unsupported questions
The Stripe connector isn't currently able to handle prompts like these.
- Create a new customer profile in Stripe
- Update the billing information for {customer}
- Delete a customer record
- Send a payment reminder to {customer}
- Schedule an automatic invoice for {company}
Installation
uv pip install airbyte-agent-stripe
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_stripe import StripeConnector
from airbyte_agent_stripe.models import StripeAuthConfig
connector = StripeConnector(
auth_config=StripeAuthConfig(
api_key="<Your Stripe API Key (starts with sk_test_ or sk_live_)>"
)
)
@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 {})
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_stripe import StripeConnector
connector = StripeConnector(
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
@StripeConnector.tool_utils
async def stripe_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})
Full documentation
This connector supports the following entities and actions.
| Entity | Actions |
|---|---|
| Customers | List, Create, Get, Update, Delete, Api_search |
| Invoices | List, Get, Api_search |
| Charges | List, Get, Api_search |
| Subscriptions | List, Get, Api_search |
| Refunds | List, Create, Get |
| Products | List, Create, Get, Update, Delete, Api_search |
| Balance | Get |
| Balance Transactions | List, Get |
| Payment Intents | List, Get, Api_search |
| Disputes | List, Get |
| Payouts | List, Get |
For all authentication options, see the connector's authentication documentation.
For detailed documentation on available actions and parameters, see this connector's full reference documentation.
For the service's official API docs, see the Stripe API reference.
Version information
- Package version: 0.5.63
- Connector version: 0.1.6
- Generated with Connector SDK commit SHA: c9b05509eb899e313055660f378d9c1f1e9129c7
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_stripe-0.5.63.tar.gz.
File metadata
- Download URL: airbyte_agent_stripe-0.5.63.tar.gz
- Upload date:
- Size: 263.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f7fd86406afacc57c733a67f9052b400eac414e5506e74183dd205830f1265f
|
|
| MD5 |
44f1ad3233a6121b2cfb610590756f56
|
|
| BLAKE2b-256 |
dbeadf43fe6a843d257545f8211cc08b634fc380ff659407c274ba6ee36284be
|
File details
Details for the file airbyte_agent_stripe-0.5.63-py3-none-any.whl.
File metadata
- Download URL: airbyte_agent_stripe-0.5.63-py3-none-any.whl
- Upload date:
- Size: 278.0 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 |
aa972d45b0a6077d4d9a7a929f3d133d8ca08510ba884560f886f8f28bb32311
|
|
| MD5 |
750ee66b109aa91a7de53157d2eaabcc
|
|
| BLAKE2b-256 |
26be078a18d9344782b0cb862738b22b81bf7de3130cb2bbbccda962e49e2acb
|