> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.airweave.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.airweave.ai/_mcp/server.

# Trello

> Trello integration with Airweave

{/* AUTO-GENERATED CONTENT START */}

<img src="https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/airweave.docs.buildwithfern.com/2026-05-20T11%3A36%3A51.367Z/docs/pages/connectors/trello/icon.svg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260807%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260807T163031Z&X-Amz-Expires=604800&X-Amz-Signature=d762fc326be2393894d21fb6d3db343b8a99ffdbc47b554e31264f2e0e24ac1d&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject" alt="Trello logo" width="48" height="48" />

<h1>
  Trello
</h1>

This connector enables AI agents and RAG systems to retrieve context from Trello through Airweave's unified search layer.

## Configuration

Trello source connector integrates with the Trello API using OAuth1.

Connects to your Trello boards and syncs boards, lists, cards, checklists, and members.

Note: Trello uses OAuth1.0, not OAuth2.

#### [View Source Code](https://github.com/airweave-ai/airweave/tree/main/backend/airweave/platform/sources/trello.py)

Explore the Trello connector implementation

### Authentication

This connector uses **OAuth 2.0 authentication**. You can connect through the Airweave UI or API using the OAuth flow.

**Supported authentication methods:**

* OAuth Browser Flow (recommended for UI)
* Auth Provider (enterprise SSO)

### Configuration Options

This connector does not have any additional configuration options.

## Data Models

The following data models are available for this connector:

#### TrelloBoardEntity

Schema for Trello board entities.

Reference:
[https://developer.atlassian.com/cloud/trello/rest/api-group-boards/](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/)

| Field            | Type                       | Description                                  |
| ---------------- | -------------------------- | -------------------------------------------- |
| trello\_id       | str                        | Trello's unique identifier for the board     |
| board\_name      | str                        | Display name of the board.                   |
| created\_time    | datetime                   | When this board snapshot was created.        |
| updated\_time    | datetime                   | When this board snapshot was last updated.   |
| web\_url\_value  | Optional\[str]             | URL to open the board in Trello.             |
| desc             | Optional\[str]             | Description of the board                     |
| closed           | bool                       | Whether the board is closed/archived         |
| url              | Optional\[str]             | URL to the board                             |
| short\_url       | Optional\[str]             | Short URL to the board                       |
| prefs            | Optional\[Dict\[str, Any]] | Board preferences and settings               |
| id\_organization | Optional\[str]             | ID of the organization this board belongs to |
| pinned           | bool                       | Whether the board is pinned                  |

#### TrelloListEntity

Schema for Trello list entities (columns on a board).

Reference:
[https://developer.atlassian.com/cloud/trello/rest/api-group-lists/](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/)

| Field           | Type             | Description                                      |
| --------------- | ---------------- | ------------------------------------------------ |
| trello\_id      | str              | Trello's unique identifier for the list          |
| list\_name      | str              | Display name of the list.                        |
| created\_time   | datetime         | When this list snapshot was created.             |
| updated\_time   | datetime         | When this list snapshot was updated.             |
| web\_url\_value | Optional\[str]   | URL to view this list (falls back to board URL). |
| id\_board       | str              | ID of the board this list belongs to             |
| board\_name     | str              | Name of the board this list belongs to           |
| closed          | bool             | Whether the list is archived                     |
| pos             | Optional\[float] | Position of the list on the board                |
| subscribed      | Optional\[bool]  | Whether the user is subscribed to this list      |

#### TrelloCardEntity

Schema for Trello card entities.

Reference:
[https://developer.atlassian.com/cloud/trello/rest/api-group-cards/](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/)

| Field                | Type                       | Description                                            |
| -------------------- | -------------------------- | ------------------------------------------------------ |
| trello\_id           | str                        | Trello's unique identifier for the card                |
| card\_name           | str                        | Display name of the card.                              |
| created\_time        | datetime                   | When the card snapshot was created.                    |
| updated\_time        | datetime                   | When the card snapshot was last updated.               |
| web\_url\_value      | Optional\[str]             | URL to open the card in Trello.                        |
| desc                 | Optional\[str]             | Description/notes on the card                          |
| id\_board            | str                        | ID of the board this card belongs to                   |
| board\_name          | str                        | Name of the board                                      |
| id\_list             | str                        | ID of the list this card belongs to                    |
| list\_name           | str                        | Name of the list                                       |
| closed               | bool                       | Whether the card is archived                           |
| due                  | Optional\[str]             | Due date for the card                                  |
| due\_complete        | Optional\[bool]            | Whether the due date is marked complete                |
| date\_last\_activity | Optional\[Any]             | Last activity date on the card                         |
| id\_members          | List\[str]                 | List of member IDs assigned to this card               |
| members              | List\[Dict\[str, Any]]     | Members assigned to this card                          |
| id\_labels           | List\[str]                 | List of label IDs attached to this card                |
| labels               | List\[Dict\[str, Any]]     | Labels attached to this card                           |
| id\_checklists       | List\[str]                 | List of checklist IDs on this card                     |
| badges               | Optional\[Dict\[str, Any]] | Badge information (comments, attachments, votes, etc.) |
| pos                  | Optional\[float]           | Position of the card in the list                       |
| short\_link          | Optional\[str]             | Short link to the card                                 |
| short\_url           | Optional\[str]             | Short URL to the card                                  |
| url                  | Optional\[str]             | Full URL to the card                                   |
| start                | Optional\[str]             | Start date for the card                                |
| subscribed           | Optional\[bool]            | Whether the user is subscribed to this card            |

#### TrelloChecklistEntity

Schema for Trello checklist entities.

Reference:
[https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/)

| Field           | Type                   | Description                                     |
| --------------- | ---------------------- | ----------------------------------------------- |
| trello\_id      | str                    | Trello's unique identifier for the checklist    |
| checklist\_name | str                    | Display name of the checklist.                  |
| created\_time   | datetime               | When the checklist snapshot was created.        |
| updated\_time   | datetime               | When the checklist snapshot was updated.        |
| web\_url\_value | Optional\[str]         | URL to open the checklist in Trello (card URL). |
| id\_board       | str                    | ID of the board this checklist belongs to       |
| id\_card        | str                    | ID of the card this checklist belongs to        |
| card\_name      | str                    | Name of the card                                |
| pos             | Optional\[float]       | Position of the checklist on the card           |
| check\_items    | List\[Dict\[str, Any]] | List of checklist items with their states       |

#### TrelloMemberEntity

Schema for Trello member (user) entities.

Reference:
[https://developer.atlassian.com/cloud/trello/rest/api-group-members/](https://developer.atlassian.com/cloud/trello/rest/api-group-members/)

| Field           | Type           | Description                               |
| --------------- | -------------- | ----------------------------------------- |
| trello\_id      | str            | Trello's unique identifier for the member |
| display\_name   | str            | Display name of the member.               |
| created\_time   | datetime       | When the member snapshot was created.     |
| updated\_time   | datetime       | When the member snapshot was updated.     |
| web\_url\_value | Optional\[str] | URL to open the member profile.           |
| username        | str            | The username of the member                |
| full\_name      | Optional\[str] | Full name of the member                   |
| initials        | Optional\[str] | Member's initials                         |
| avatar\_url     | Optional\[str] | URL to the member's avatar                |
| bio             | Optional\[str] | Member's bio                              |
| url             | Optional\[str] | URL to the member's profile               |
| id\_boards      | List\[str]     | List of board IDs the member belongs to   |
| member\_type    | Optional\[str] | Type of member (normal, admin, etc.)      |

{/* AUTO-GENERATED CONTENT END */}