# SpreedlyLoader

> **Class** in `langchain_community`

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

Load from `Spreedly` API.

## Signature

```python
SpreedlyLoader(
    self,
    access_token: str,
    resource: str,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `access_token` | `str` | Yes | The access token. |
| `resource` | `str` | Yes | The resource. |

## Extends

- `BaseLoader`

## Constructors

```python
__init__(
    self,
    access_token: str,
    resource: str,
) -> None
```

| Name | Type |
|------|------|
| `access_token` | `str` |
| `resource` | `str` |


## Properties

- `access_token`
- `resource`
- `headers`

## Methods

- [`load()`](https://reference.langchain.com/python/langchain-community/document_loaders/spreedly/SpreedlyLoader/load)

---

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