> ## Documentation Index
> Fetch the complete documentation index at: https://forest-chore-open-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Stripe

> Connect Stripe to Forest

<Note>Only available for Node.js.</Note>

The Stripe datasource connects your Stripe account to Forest, allowing you to browse and manage your Stripe data (customers, payments, subscriptions, and more) directly from your back-office.

## Installation

```bash theme={null}
npm install @forestadmin-experimental/datasource-stripe
```

## Basic usage

```javascript theme={null}
import { createAgent } from '@forestadmin/agent';
import { createStripeDataSource } from '@forestadmin-experimental/datasource-stripe';

const agent = createAgent(options);

agent.addDataSource(
  createStripeDataSource({
    secretKey: process.env.STRIPE_SECRET_KEY
  })
);
```

## Source code

[github.com/ForestAdmin/forestadmin-experimental, datasource-stripe](https://github.com/ForestAdmin/forestadmin-experimental/tree/main/packages/datasource-stripe)

## Source code

This connector is open source. Browse the code or contribute on GitHub: [`@forestadmin-experimental/datasource-stripe`](https://github.com/ForestAdmin/forestadmin-experimental/tree/main/packages/datasource-stripe).
