> 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.

# Attio

> Attio 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/attio/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=c72dbb4cc02c049aa5debbaf396bbe7d1e589e2a208da8d4d86018432b3faca7&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject" alt="Attio logo" width="48" height="48" />

<h1>
  Attio
</h1>

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

## Configuration

Attio source connector — syncs objects, lists, records, and notes.

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

Explore the Attio connector implementation

### Authentication

**Supported authentication methods:**

* Direct Credentials
* Auth Provider

### Configuration Options

This connector does not have any additional configuration options.

## Data Models

The following data models are available for this connector:

#### AttioObjectEntity

Schema for Attio Object (e.g., Companies, People, Deals).

| Field          | Type                | Description                                   |
| -------------- | ------------------- | --------------------------------------------- |
| object\_id     | str                 | Attio object ID                               |
| name           | str                 | Display name of the object                    |
| created\_at    | Optional\[datetime] | When the object was created                   |
| singular\_noun | str                 | Singular name of the object (e.g., 'Company') |
| plural\_noun   | str                 | Plural name of the object (e.g., 'Companies') |
| api\_slug      | str                 | API slug for the object                       |
| icon           | Optional\[str]      | Icon representing this object                 |

#### AttioListEntity

Schema for Attio List.

| Field          | Type                | Description                              |
| -------------- | ------------------- | ---------------------------------------- |
| list\_id       | str                 | Attio list ID                            |
| name           | str                 | List name                                |
| created\_at    | Optional\[datetime] | When the list was created                |
| workspace\_id  | str                 | ID of the workspace this list belongs to |
| parent\_object | Optional\[str]      | Parent object type if applicable         |

#### AttioRecordEntity

Schema for Attio Record.

| Field                | Type                   | Description                                           |
| -------------------- | ---------------------- | ----------------------------------------------------- |
| record\_id           | str                    | Attio record ID                                       |
| name                 | str                    | Record display name                                   |
| created\_at          | Optional\[datetime]    | When the record was created                           |
| updated\_at          | Optional\[datetime]    | When the record was last updated                      |
| object\_id           | Optional\[str]         | ID/slug of the object this record belongs to          |
| list\_id             | Optional\[str]         | ID of the list this record belongs to                 |
| parent\_object\_name | Optional\[str]         | Name of the parent object/list                        |
| description          | Optional\[str]         | Description of the record                             |
| email\_addresses     | List\[Dict\[str, Any]] | Email addresses associated with this record           |
| phone\_numbers       | List\[Dict\[str, Any]] | Phone numbers associated with this record             |
| domains              | List\[str]             | Domain names (for company records)                    |
| categories           | List\[str]             | Categories/tags for this record                       |
| attributes           | Dict\[str, Any]        | Custom attributes and their values                    |
| permalink\_url       | Optional\[str]         | URL to view this record in Attio (if provided by API) |

#### AttioNoteEntity

Schema for Attio Note.

| Field              | Type                       | Description                                         |
| ------------------ | -------------------------- | --------------------------------------------------- |
| note\_id           | str                        | Attio note ID                                       |
| name               | str                        | Note title or preview                               |
| created\_at        | Optional\[datetime]        | When the note was created                           |
| updated\_at        | Optional\[datetime]        | When the note was last updated                      |
| parent\_record\_id | str                        | ID of the record this note is attached to           |
| parent\_object     | Optional\[str]             | Type of parent object                               |
| title              | Optional\[str]             | Title of the note                                   |
| content            | str                        | Content of the note                                 |
| format             | Optional\[str]             | Format of the note (plaintext, markdown, etc.)      |
| author             | Optional\[Dict\[str, Any]] | User who created this note                          |
| permalink\_url     | Optional\[str]             | URL to view this note in Attio (if provided by API) |

{/* AUTO-GENERATED CONTENT END */}