> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Stripe

> Access Stripe payment data, customers, subscriptions, and balance information

## At a glance

* **Availability**: Experimental ([how to enable](/cloud/integrations)).
* **Auth**: API key.
* **Connection**: The key from `STRIPE_SECRET_KEY` is sent as the `Bearer` prefixed `Authorization` header.
* **Docs**: [https://docs.stripe.com/api/authentication](https://docs.stripe.com/api/authentication)

## Credentials

Set these per environment. See [Connect an integration](/cloud/integrations).

| Variable                | Required | Description                                                                                               |
| ----------------------- | -------- | --------------------------------------------------------------------------------------------------------- |
| `STRIPE_SECRET_KEY`     | Yes      | Stripe Secret Key (starts with sk\_) [Docs](https://dashboard.stripe.com/apikeys).                        |
| `STRIPE_WEBHOOK_SECRET` | No       | Stripe Webhook Secret (optional, for webhook verification) [Docs](https://dashboard.stripe.com/webhooks). |

## Tools

| Tool               | Access | Description                                                     |
| ------------------ | ------ | --------------------------------------------------------------- |
| List Customers     | Read   | List Stripe customers with optional filtering                   |
| Get Customer       | Read   | Retrieve detailed information about a specific customer         |
| List Payments      | Read   | List payment intents with optional status filtering             |
| Get Balance        | Read   | Retrieve the current account balance                            |
| List Subscriptions | Read   | List subscriptions with optional status filtering               |
| List Invoices      | Read   | List invoices with optional customer and status filtering       |
| List Charges       | Read   | List charges with optional customer or payment intent filtering |

## Example prompts

* Check my Stripe account balance and provide a summary of available and pending funds.
* Show me the most recent successful payments in my Stripe account.
* Give me an overview of my Stripe customers including total count and recent additions.
* Show me the status of all active subscriptions and any that are expiring soon.
