Data Connectors
Connect Airtable, Google Sheets, Notion, and REST APIs as live data sources for your generated apps and workflows, no manual API wiring.
What They Are
Data Connectors plug your generated app into external data sources without writing API integration code. Configure once, then read and write through a uniform SDK at window.genmb.connector or via the matching workflow nodes.
- Uniform read/write API across very different upstream services.
- Credentials encrypted at rest and decrypted only at call time.
- Same connector usable from generated app code and from workflow nodes.
- Schema introspection so the AI can suggest field names accurately.
Available Connectors
Airtable
Connect a base by personal access token. Read and write records, list tables, and filter by formula.
Google Sheets
Connect via Google OAuth. Read ranges, append rows, and write cells across multiple worksheets in the same spreadsheet.
Notion
Connect with an integration token. Query databases by filter, page through large result sets, create and update pages.
REST API
Generic connector for any HTTPS API. Configure base URL, headers, and auth. Use when there is no native connector for your provider.
Setup
Open the Connectors panel
Authenticate
Pick the data scope
Reference it in code or workflows
window.genmb.connector and to workflow nodes by name.Using Connectors in Apps
When a connector is configured, the AI knows about its schema and can generate code that reads from it directly. You can also call the SDK manually:
Using Connectors in Workflows
Workflow nodes for Google Sheets, Airtable, and Notion route through the same connector layer. Pick the connector by name in the node config; data flows through with the standard {{node_id.field}} interpolation.
Security
All connector tokens are encrypted at rest with Fernet. The encryption key never ships to the browser.
Connectors live on a single app. There is no cross-app sharing - moving an app between owners revokes its connectors.
Connectors initiate calls to the upstream service. Nothing accepts inbound traffic; webhooks must use Workflow webhook triggers.
REST API connectors are validated against private IP ranges and require HTTPS - internal networks cannot be probed via a configured connector.
FAQs
How is a Data Connector different from a Plugin?▾
Where are credentials stored?▾
Can I use Data Connectors in workflows?▾
Are there rate limits?▾
Ready to build?
Create your first app for free, no credit card required.