The Databar Google Sheets Extension brings enrichment functionality directly into your spreadsheets. Use custom formulas and an interactive sidebar to enrich data, run waterfalls, and check your credit balance — all without leaving Google Sheets.Documentation Index
Fetch the complete documentation index at: https://docs.databar.ai/llms.txt
Use this file to discover all available pages before exploring further.

Installation
Install the extension from the Google Workspace Marketplace. Once installed, open any Google Sheet and the Databar.ai menu appears in the menu bar.Configuration
Set your API key
Go to Databar.ai > Configure API Key in the menu bar. Paste your Databar API key and save. You can also set the key from the sidebar.
Sidebar
Open the sidebar via Databar.ai > Open Sidebar. The sidebar lets you:- Browse and search available enrichments and waterfalls
- Configure parameters and generate formulas with the correct syntax
- Track enrichment executions in the Jobs panel
- Check your current credit balance
Formulas
DATABAR_ENRICH
DATABAR_ENRICH
Run a single enrichment and return the full JSON result in one cell.Example — verify an email address:To bypass the cache and force a fresh API call, add
"BYPASS_CACHE" as the last parameter:DATABAR_ENRICH_EXPAND
DATABAR_ENRICH_EXPAND
Run an enrichment and expand the result across multiple cells. Row 1 contains the headers, Row 2 contains the values.Optionally filter which fields are returned by adding a comma-separated list of field names:
DATABAR_WATERFALL
DATABAR_WATERFALL
Run a waterfall across multiple providers and return the result. Cell 1 contains the concatenated result, cell 2 contains the full JSON.Example — find an email using three providers:Provider order matters — place your cheapest or highest-coverage providers first to minimize cost.
DATABAR_WATERFALL_EXPAND
DATABAR_WATERFALL_EXPAND
Same as
DATABAR_WATERFALL, but expands the result across multiple cells (Row 1: headers, Row 2: values) instead of returning JSON.DATABAR_JSON_EXTRACT
DATABAR_JSON_EXTRACT
Extract a specific value from a JSON result using dot notation.Example — extract an email from an enrichment result:
DATABAR_STATUS
DATABAR_STATUS
Check the status of a long-running enrichment task.Use this when a formula returns
"PROCESSING" to monitor progress.Batch processing
For datasets with 100+ rows, use the Batch Enrich tool instead of individual formulas.Configure the batch
Select your input range, enter the enrichment ID, and specify the parameter name.
Review the cost estimate
The tool displays an estimated credit cost before you run. Confirm to proceed.
Caching
The extension caches results for 24 hours at three levels: user, document, and script. If the same input is sent again within that window, the cached result is returned instantly — no API call is made and no credits are consumed. Cache is shared across collaborators working on the same sheet. To force a fresh request, add"BYPASS_CACHE" as the last parameter in any formula.
Rate limiting
The extension enforces the following rate limits to ensure reliable performance:- 20 concurrent requests maximum
- 300 requests per minute maximum
Common workflows
- Verify an email list — use
DATABAR_ENRICHwith an email verification enrichment on a column of email addresses. - Find emails with a waterfall — use
DATABAR_WATERFALLto chain multiple email finder providers for maximum coverage. - Enrich company data — use
DATABAR_ENRICH_EXPANDto pull firmographic details from a column of domains. - Batch process large datasets — use the Batch Enrich tool for 100+ rows to avoid formula overhead.
Troubleshooting
API key not configured
API key not configured
Configure your API key via Databar.ai > Configure API Key in the menu bar. Your key is available in your Databar workspace under Integrations.
#REF! error
#REF! error
Check that all cell references in the formula are valid. Ensure the referenced cells exist and contain the expected data.
Cannot pass a range/array
Cannot pass a range/array
Databar formulas accept single cell references, not ranges. Enter the formula in one cell and drag it down to process multiple rows.
Cell shows PROCESSING
Cell shows PROCESSING
The enrichment is still running. Wait for it to complete, or use
=DATABAR_STATUS(taskId) to check progress.No data returned
No data returned
Verify that the input value is correct and that the selected provider supports the input type. Try running the same enrichment in the Databar UI to confirm the provider returns results for that input.
Next steps
Enrichments
Learn how enrichments work in Databar.
Waterfalls
Chain providers for maximum data coverage.
Credits & billing
Understand how credits are consumed.