Slab

Slab logo

Slab

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.

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:

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.

FieldTypeDescription
topic_idstrUnique Slab ID of the topic.
namestrDisplay name of the topic
created_atOptional[datetime]When the topic was created.
updated_atOptional[datetime]When the topic was last updated.
descriptionOptional[str]Description of the topic
slugOptional[str]URL slug for the topic
web_url_valueOptional[str]URL to view the topic in Slab.

Schema for a Slab post (document/article).

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

FieldTypeDescription
post_idstrUnique Slab ID of the post.
titlestrTitle of the post
created_atOptional[datetime]When the post was created.
updated_atOptional[datetime]When the post was last updated.
contentOptional[str]Full content/body of the post
topic_idstrID of the topic this post belongs to
topic_namestrName of the topic this post belongs to
authorOptional[Dict[str, Any]]Author information (name, email, etc.)
tagsList[str]Tags associated with the post
slugOptional[str]URL slug for the post
web_url_valueOptional[str]URL to view the post in Slab.

Schema for a Slab comment on a post.

Comments provide discussion and feedback on posts.

FieldTypeDescription
comment_idstrUnique Slab ID of the comment.
contentstrContent/body of the comment
created_atOptional[datetime]When the comment was created.
updated_atOptional[datetime]When the comment was last updated.
post_idstrID of the post this comment belongs to
post_titlestrTitle of the post this comment belongs to
topic_idOptional[str]ID of the topic this comment belongs to
topic_nameOptional[str]Name of the topic this comment belongs to
authorOptional[Dict[str, Any]]Author information (name, email, etc.)
web_url_valueOptional[str]URL to view the comment in Slab.