Coda

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

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

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.

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.

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.