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

Coda

Was this page helpful?
Edit this page
Previous

Confluence

Next
Built with
Coda logo

Coda

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

Configuration

Coda source connector.

Syncs docs, pages (with content), and tables/rows from Coda. Auth: Personal API Token or OAuth (via Packs).

View Source Code

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

CodaDocEntity

Schema for a Coda doc (top-level container).

FieldTypeDescription
doc_idstrID of the Coda doc.
namestrName/title of the doc.
ownerOptional[str]Email of the doc owner.
owner_nameOptional[str]Display name of the doc owner.
created_atOptional[datetime]When the doc was created.
updated_atOptional[datetime]When the doc was last modified.
workspace_nameOptional[str]Name of the workspace containing the doc.
folder_nameOptional[str]Name of the folder containing the doc.
browser_linkOptional[str]Browser URL for the doc.
CodaPageEntity

Schema for a Coda page (canvas with content).

FieldTypeDescription
page_idstrID of the page.
namestrName of the page.
subtitleOptional[str]Subtitle of the page.
doc_idstrID of the parent doc.
doc_nameOptional[str]Name of the parent doc.
contentOptional[str]Aggregated page content (plain text).
content_typeOptional[str]Page type (canvas, embed, syncPage).
created_atOptional[datetime]When the page was created.
updated_atOptional[datetime]When the page was last modified.
browser_linkOptional[str]Browser URL for the page.
CodaTableEntity

Schema for a Coda table or view.

FieldTypeDescription
table_idstrID of the table.
namestrName of the table.
table_typeOptional[str]Type (table or view).
doc_idstrID of the parent doc.
doc_nameOptional[str]Name of the parent doc.
page_nameOptional[str]Name of the parent page if any.
row_countintNumber of rows in the table.
created_atOptional[datetime]When the table was created.
updated_atOptional[datetime]When the table was last modified.
browser_linkOptional[str]Browser URL for the table.
CodaRowEntity

Schema for a row in a Coda table.

FieldTypeDescription
row_idstrID of the row.
namestrDisplay name of the row (identifying column value).
table_idstrID of the parent table.
table_nameOptional[str]Name of the parent table.
doc_idstrID of the doc containing the table.
valuesDict[str, Any]Cell values keyed by column ID.
values_textOptional[str]Human-readable row content for search.
created_atOptional[datetime]When the row was created.
updated_atOptional[datetime]When the row was last modified.
browser_linkOptional[str]Browser URL for the row.