For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Fork this repoGet a demo
  • Docs
    • Welcome
    • Quickstart
    • Concepts
    • Search
    • MCP Server
    • CLI
    • Agent Skills
    • Connect
    • Add New Connector
    • Rate Limits
      • Overview
      • Airtable
      • Apollo
      • Asana
      • Attio
      • Bitbucket
      • Box
      • Calcom
      • Clickup
      • Coda
      • Confluence
      • Ctti
      • Document360
      • Dropbox
      • Fireflies
      • Freshdesk
      • Github
      • Gitlab
      • Gmail
      • Google Calendar
      • Google Docs
      • Google Drive
      • Google Slides
      • Hubspot
      • Intercom
      • Jira
      • Linear
      • Monday
      • Notion
      • Onedrive
      • Onenote
      • Outlook Calendar
      • Outlook Mail
      • Pipedrive
      • Powerpoint
      • Salesforce
      • Servicenow
      • Sharepoint
      • Shopify
      • Slab
      • Slack
      • Slite
      • Stripe
      • Teams
      • Todoist
      • Trello
      • Word
      • Zendesk
      • Zoho Crm
      • Zoom
  • API Reference
LogoLogo
Fork this repoGet a demo
On this page
  • Configuration
  • Authentication
  • Configuration Options
  • Data Models
DocsConnectors

Slite

Was this page helpful?
Edit this page
Previous

Stripe

Next
Built with
Slite logo

Slite

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

Configuration

Slite source connector.

Syncs notes (documents) from your Slite workspace. Uses a personal API key (Settings > API). List notes with optional parent filter, then fetches full content per note (markdown) for embedding.

View Source Code

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

SliteNoteEntity

Schema for a Slite note (document).

Maps to Slite’s Note/NoteWithContent from the public API.

FieldTypeDescription
note_idstrSlite note ID (id from API).
namestrTitle of the note
contentOptional[str]Note body in Markdown or HTML
parent_note_idOptional[str]Parent note id (null if root).
created_atOptional[datetime]When the note was created (derived if not from API).
modified_atOptional[datetime]When the note was last edited (lastEditedAt).
updated_atOptional[datetime]When the note was last updated (updatedAt).
archived_atOptional[datetime]When the note was archived (null if not archived).
review_stateOptional[str]Review state: Verified, Outdated, VerificationRequested.
ownerOptional[Dict[str, Any]]Owner (userId or groupId) for review.
columnsList[str]Column names if note is in a collection.
attributesList[str]Attribute values if note is in a collection (ordered by column).
web_url_valueOptional[str]URL to open the note in Slite.