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

# Slab

> Slab 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/slab/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=20260807T162930Z&X-Amz-Expires=604800&X-Amz-Signature=2a1cb799e370ad8c1a68d4d6046ecd899f180b6c80f81394436728c164372e46&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject" alt="Slab logo" width="48" height="48" />

<h1>
  Slab
</h1>

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

## Configuration

Slab source connector integrates with the Slab GraphQL API to extract knowledge base content.

Connects to your Slab workspace and synchronizes topics and posts.
Comments are included via search() results (CommentSearchResult) and synced.

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

Explore the Slab 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:

#### SlabTopicEntity

Schema for a Slab topic (top-level category/folder).

Topics are containers for posts in Slab, similar to spaces in Confluence
or databases in Notion.

| Field           | Type                | Description                      |
| --------------- | ------------------- | -------------------------------- |
| topic\_id       | str                 | Unique Slab ID of the topic.     |
| name            | str                 | Display name of the topic        |
| created\_at     | Optional\[datetime] | When the topic was created.      |
| updated\_at     | Optional\[datetime] | When the topic was last updated. |
| description     | Optional\[str]      | Description of the topic         |
| slug            | Optional\[str]      | URL slug for the topic           |
| web\_url\_value | Optional\[str]      | URL to view the topic in Slab.   |

#### SlabPostEntity

Schema for a Slab post (document/article).

Posts are the main content entities in Slab, containing documentation
and wiki articles.

| Field           | Type                       | Description                            |
| --------------- | -------------------------- | -------------------------------------- |
| post\_id        | str                        | Unique Slab ID of the post.            |
| title           | str                        | Title of the post                      |
| created\_at     | Optional\[datetime]        | When the post was created.             |
| updated\_at     | Optional\[datetime]        | When the post was last updated.        |
| content         | Optional\[str]             | Full content/body of the post          |
| topic\_id       | str                        | ID of the topic this post belongs to   |
| topic\_name     | str                        | Name of the topic this post belongs to |
| author          | Optional\[Dict\[str, Any]] | Author information (name, email, etc.) |
| tags            | List\[str]                 | Tags associated with the post          |
| slug            | Optional\[str]             | URL slug for the post                  |
| web\_url\_value | Optional\[str]             | URL to view the post in Slab.          |

#### SlabCommentEntity

Schema for a Slab comment on a post.

Comments provide discussion and feedback on posts.

| Field           | Type                       | Description                               |
| --------------- | -------------------------- | ----------------------------------------- |
| comment\_id     | str                        | Unique Slab ID of the comment.            |
| content         | str                        | Content/body of the comment               |
| created\_at     | Optional\[datetime]        | When the comment was created.             |
| updated\_at     | Optional\[datetime]        | When the comment was last updated.        |
| post\_id        | str                        | ID of the post this comment belongs to    |
| post\_title     | str                        | Title of the post this comment belongs to |
| topic\_id       | Optional\[str]             | ID of the topic this comment belongs to   |
| topic\_name     | Optional\[str]             | Name of the topic this comment belongs to |
| author          | Optional\[Dict\[str, Any]] | Author information (name, email, etc.)    |
| web\_url\_value | Optional\[str]             | URL to view the comment in Slab.          |

{/* AUTO-GENERATED CONTENT END */}