# FigmaFileLoader

> **Class** in `langchain_community`

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

Load `Figma` file.

## Signature

```python
FigmaFileLoader(
    self,
    access_token: str,
    ids: str,
    key: str,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `access_token` | `str` | Yes | The access token for the Figma REST API. |
| `ids` | `str` | Yes | The ids of the Figma file. |
| `key` | `str` | Yes | The key for the Figma file |

## Extends

- `BaseLoader`

## Constructors

```python
__init__(
    self,
    access_token: str,
    ids: str,
    key: str,
)
```

| Name | Type |
|------|------|
| `access_token` | `str` |
| `ids` | `str` |
| `key` | `str` |


## Properties

- `access_token`
- `ids`
- `key`

## Methods

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

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/4b280287bd55b99b44db2dd849f02d66c89534d5/libs/community/langchain_community/document_loaders/figma.py#L11)