# AirbyteStripeLoader

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/document_loaders/airbyte/AirbyteStripeLoader)

Load from `Stripe` using an `Airbyte` source connector.

## Signature

```python
AirbyteStripeLoader(
    self,
    config: Mapping[str, Any],
    stream_name: str,
    record_handler: Optional[RecordHandler] = None,
    state: Optional[Any] = None,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `config` | `Mapping[str, Any]` | Yes | The config to pass to the source connector. |
| `stream_name` | `str` | Yes | The name of the stream to load. |
| `record_handler` | `Optional[RecordHandler]` | No | A function that takes in a record and an optional id and returns a Document. If None, the record will be used as the document. Defaults to None. (default: `None`) |
| `state` | `Optional[Any]` | No | The state to pass to the source connector. Defaults to None. (default: `None`) |

## Extends

- `AirbyteCDKLoader`

## Constructors

```python
__init__(
    self,
    config: Mapping[str, Any],
    stream_name: str,
    record_handler: Optional[RecordHandler] = None,
    state: Optional[Any] = None,
) -> None
```

| Name | Type |
|------|------|
| `config` | `Mapping[str, Any]` |
| `stream_name` | `str` |
| `record_handler` | `Optional[RecordHandler]` |
| `state` | `Optional[Any]` |


---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/d5ea8358933260ad48dd31f7f8076555c7b4885a/libs/community/langchain_community/document_loaders/airbyte.py#L98)