Change log

Follow new updates and improvements to Databar.ai.

August 20th, 2026

For a long time, the Databar API did exactly one thing: run enrichments. That's over. Everything you can do in the app, you can now do over HTTP.

What the API covers now

  • Build lists, attach sources with a command. Build lists of companies, people, job postings, and CRM records programmatically.

  • Run enrichments, waterfalls, and flows and get structured results back, one row at a time or in bulk. All enrichments in your Databar workspace are available via API to deploy instantly.

  • Turn a flow into an endpoint. Every flow you build on the canvas (Monday’s launch) is callable with a single API request: send inputs, get the pipeline's structured output back. Design the logic once, visually, then run it from your product, your scripts, or your backend forever.

  • Move & de-duplicate rows in batches. Insert, update, upsert, or delete rows in a single call, with server-side deduplication and columns created automatically when your data has new fields.

  • Build tables programmatically. Attach enrichments, waterfalls, and exporters to a table, with columns mapped automatically.

  • Bring your own sources and destinations. Register custom HTTP connectors, run exporters to push results into your CRM, and organize everything with folders.

  • Run on your own provider keys. The API remembers your default key per data provider, so requests can run on the subscriptions you already pay for instead of spending credits.

  • Discover what's available. Search and filter the enrichments by category or keyword, and fetch valid parameter choices, so you can build pickers and automations on top of Databar itself.

🏭 It behaves like an API you'd want in production

Every task reports exactly how many credits it spent. Reads support filtering and pagination. Rate limits come back as clean 429s instead of mystery failures. And a run_errors mode lets you re-run only the rows that failed, so retries don't cost you a full second pass.

πŸŽ‡ The Python SDK: GTM Pipelines in Python

If you'd rather not hand-write HTTP, the Python SDK wraps all of it:

pip install databar

The rewritten SDK turns Databar into a building block you can compose. Chain enrichments, waterfalls, flows, and your own logic into a repeatable GTM pipeline, then drop it wherever you already run Python: a cron job, an Airflow, a backend service, or a notebook. And when you've already designed a pipeline visually as a flow, you don't rebuild it in code: list it, run it, and get its output back in a couple of lines.

from databar import DatabarClient
db = DatabarClient(api_key="...")
for lead in leads:    
     email   = db.run_enrichment_sync(EMAIL_FINDER, {"name": lead.name, "domain": lead.domain})    

company = db.run_enrichment_sync(COMPANY_ENRICH, {"domain": lead.domain})    

# then your logic: score it, filter it, push it to your CRM

Go sync when you want the answer right now, or async with task polling when the job runs long. Large row operations are auto-batched, so you can push thousands of records without babysitting them. And it's built for production: typed (Pydantic) models, automatic retries with backoff, and a typed exception for every failure mode, so you can catch "out of credits" or a rate limit and handle it gracefully instead of watching your job crash.

Explore the API reference Β· Read the SDK docs

Heads-up for existing API and SDK users (breaking change): bulk-run results now come back as a positional list that lines up with your inputs, one result per input, in order, with null for misses, instead of an unordered list of hits. Match results to inputs by position.


About Databar

Databar replaces your go-to-market data stack with one platform. Search companies, people, and jobs, monitor the web for signals, and enrich it all with 160+ data sources and waterfalls. Wire everything into reusable automations that run on a schedule, on your tables and CRM data, or by an AI agent. App, API, MCP server, SDK, and CLI included on every plan.

July 15th, 2026

The Databar MCP server has been running in early access for a few months, quietly powering real agent workflows the whole time. Today it comes out of beta and is officially live, battle-tested and ready to rely on. Connect Databar to Claude, Cursor, or any MCP client, and your agent can run your entire GTM data workflow on its own.

What sets it apart

Most MCP servers just read or query data. This one builds and runs the whole workflow.

πŸ—οΈ Build and wire up tables end to end

Create tables, add columns and enrichments, insert and update rows, and attach data sources and waterfalls right to it, all from a conversation. Claude can finally be your always-on GTM Engineer, with the full data enrichment stack and table infrastructure to back it.

⚑ Skip tables entirely

Run enrichments and waterfalls directly and get the results straight back, no table required.

πŸ” Build and run flows

This is where it compounds. Flows (yesterday's launch) are reusable pipelines you build once and run everywhere, and your agent gets both halves: it can assemble a new flow for you, or invoke the ones your team already built as ready-made tools. Your best enrichment process, wired up once on the canvas, becomes something Claude can run on demand.

πŸ”Œ Bring your own HTTP APIs

Point it at a custom REST endpoint and it can wire it up to your Databar workspace, so it's fully usable in flows and enrichments.

πŸ“€ Send data out

Run exporters to push results into your CRM or wherever else you need them.

That's 35+ tools in total, covering enrichments, waterfalls, flows, tables, rows, sources, exporters, folders, and your account balance.

Built to be trusted

πŸ” One click to connect

Databar is now a full OAuth provider, so connecting from Claude (web and desktop), Cursor, and other MCP clients is a one-click sign-in, not a setup. A new Connected apps page in settings shows every app with access, which you can revoke at any time.

The Databar MCP is currently in review by Anthropic and will be an official marketplace app shortly.

πŸ’³ Safe with your credits by default

It checks your balance before spending, respects the spend caps you set, and has full visibility into how many credits were or will be spent on a job.

🧠 Agents know how to use it out of the box with Skills

We ship Agent Skills, so a connected agent already understands how Databar works without you explaining it.

Point your agent at mcp.databar.ai/mcp and go. Set up MCP


About Databar

Databar replaces your go-to-market data stack with one platform. Search companies, people, and jobs, monitor the web for signals, and enrich it all with 160+ data sources and waterfalls. Wire everything into reusable automations that run on a schedule, on your tables and CRM data, or by an AI agent. App, API, MCP server, SDK, and CLI included on every plan.

July 15th, 2026

Most enrichment work is the same few steps, over and over. Find the email, verify it, enrich the company, score the lead. The process is standard and you run it constantly, so it should be something you build once and reuse, not something you rebuild column by column every time.

That's hard to do with table enrichments. Branching logic is awkward (do one thing when there's an email, something else when there isn't). Sharing a process with your team means rebuilding it by hand. And once it's set up, you can't lift it out and run it somewhere else, or call it on its own from an API or another tool.

Flows changes that. It's a visual builder where you chain enrichments, AI, waterfalls, logic, and transforms into one pipeline you can save, reuse, and run anywhere.

πŸ₯½ Visualize it on a canvas

Drag nodes onto the canvas, drop in any enrichment, and connect the steps. Give your flow named inputs, choose what it returns, and you have a pipeline that runs the same way every time.

πŸ‘₯ Build it once, run it as a team

A flow becomes the standard way your whole team runs a process, instead of everyone wiring up their own slightly different version. Update it in one place and everyone gets the new version.

Every building block you need

Enrichment and action nodes

Drop in any enrichment from Databar's catalog. That's every provider and data source we support, kept up to date constantly, so your flows always run on the latest. It's the same keyless API network you already use in tables, so no provider accounts or API keys to set up. And you're not limited to our catalog: point a node at your own custom HTTP API and it runs right alongside everything else.

‡️ Conditional branching logic

Real-world data is messy. Some rows have a website, some have a LinkedIn, some have almost nothing.

Add If / else conditions to send each row down the right path: enrich the people who have an email, route the rest to a waterfall, and skip the ones that will never match so you don't burn credits on them. This kind of branching is genuinely painful with plain table enrichments. In Flows, it's just a node you drop on the canvas.

AI nodes

Add a Custom AI Prompt (OpenAI, Anthropic, or Gemini) to reason over your data, or an AI Researcher to go find and structure information on its own. Databar can even draft the prompt for you from your flow's inputs.

Waterfalls

Chain fallback providers inside a flow, so when the first source comes up empty, the next one takes over.

Tools

Reshape data as it moves, with JQ, merge, math, and table lookup.

Test, watch, and trust it

Test before you ship, and see the cost first

Hit Test to run your flow on sample input. Every node lights up with its status, and you get a live credit estimate before you commit, so there are no surprises when you run it at scale.

See exactly what happened

Every run is fully logged. Open the run history to inspect each step: its status, what it returned, how long it took, and what it cost. When something looks off, you can see precisely where and why, instead of guessing.

Run it however you work

A flow isn't locked inside the app. Once you've built it, run it from anywhere:

  • Directly via the API. Call your flow with a single API request and get structured output back.

  • Over MCP. Let an AI agent trigger the flow through the Databar MCP server.

  • From the CLI or SDK. Run it in your terminal or from Python, right inside your own scripts.

  • On a table. Attach a flow to any table as an enrichment, so every row runs through the pipeline automatically, on click or on update.

Build it once, and the same pipeline can power a table, sit behind your own product, run from the tools you already use, or get handed to an agent.

One more thing: you don't even have to build a flow by hand. An AI agent can build one for you through the Databar MCP server. More on that in tomorrow's launch.

Flows is live today. Open Flows


About Databar

Databar replaces your go-to-market data stack with one platform. Search companies, people, and jobs, monitor the web for signals, and enrich it all with 160+ data sources and waterfalls. Wire everything into reusable automations that run on a schedule, on your tables and CRM data, or by an AI agent. App, API, MCP server, SDK, and CLI included on every plan.

March 10th, 2026

Here's a look at everything we shipped over the past couple of weeks - new features, meaningful improvements, and a few fixes that were overdue


πŸ†• Look up values across your tables

You can now enrich any table by pulling in matching values from another table in your workspace - similar to a VLOOKUP in a spreadsheet, but built natively into Databar.

Pick a target table, choose which column to search in, set your match condition (contains or equals), and map in the value to look up - including dynamic column references using the { syntax. The result lands as a new column in your table. This is especially useful for cross-referencing CRM exports, matching enriched contact data, excluding competitors or sensitive contacts or companies from your list building and enrichment processes, or joining any two datasets on a shared field without leaving Databar.


🀫 Databar MCP Server (easter egg)

We've quietly published a hosted MCP (Model Context Protocol) server for Databar. This means you can now connect Databar directly to AI tools and coding assistants that support MCP - like Cursor, Claude, and others.

We will be officially announcing this shortly - for now, if you read this changelog, you get to use it early. πŸ˜‰

Read the full API documentation at its new permanent home at docs.databar.ai.


✨ Simpler row adding

The "Add rows" button has been improved to be less complicated. By default, clicking it adds a single row to the bottom of your table. If you need more control, a small chevron menu lets you specify the number of rows and whether they go to the top or bottom.


✨ Rate limits on the API & SDK

We've introduced rate limiting across the Databar API and SDK. Limits are managed per plan, ensuring consistent and fair performance for all users. If you're building on top of the Databar API, you'll now see clear, predictable limits so you can design your integrations accordingly. Check your plan details for specifics.


πŸ†• Never run out of credits unexpectedly β€” low credit alerts

You can now set up an email alert that notifies you when your workspace credits drop below a threshold you define. Head to your workspace settings, enable the alert, set your threshold, and you'll get an email the moment your balance dips below it - giving you time to top up before any enrichments or automations are interrupted.

The alert is off by default, so nothing changes unless you turn it on. Once enabled, only the workspace owner receives the notification, and you can adjust or disable it at any time from the same settings page.

Other updates

  • UI Updates on drop-downs, modals, and menu items

  • General bug fixes & updates

February 28th, 2026

⚑ Webhooks: Instant Table Setup (New)

Setting up a webhook just got a lot faster. Previously, clicking "Webhooks" sent you to a docs page and required multiple manual steps to get a working table. Now, clicking "Webhooks" instantly creates a new table with the webhook pre-configured and the setup panel already open - your unique webhook URL is ready to copy immediately.

Value: go from zero to a live, receiving webhook in seconds - no extra steps, no docs page.


βž• New Importers & Integrations

We've expanded the Import Data modal with 9 new sources. You can now pull data directly into Databar from:

Calendly: Import all scheduled events from your Calendly account, including event name, start/end time, location, host, invitee name, email, timezone, and answers to any custom booking questions. Great for syncing your meeting pipeline into a table automatically.

Attio: Import your contacts, companies, or deals from Attio, including names, emails, domains, job titles, social links, deal stages, and any custom attributes you've set up in your workspace.

Salesforce: Import leads and contacts directly from Salesforce, including name, email, company, phone, title, lead status, and all standard and custom fields.

Instantly:Β Search and look up leads across your Instantly campaigns. Pull contact details (name, email, company, domain, phone), campaign assignment, interest status, email open/reply/click counts, and any custom variables you've attached to leads.

HeyReach:Β Import leads from your HeyReach LinkedIn outreach campaigns, including name, LinkedIn URL, company, and campaign membership β€” useful for syncing your LinkedIn pipeline with the rest of your data.

Salesforge:Β Import contacts from Salesforge, including name, email, company, and sequence data β€” so you can enrich, analyze, or cross-reference your outreach contacts in Databar.

Folk:Β Import people and companies from your Folk CRM, including names, emails, phone numbers, company associations, job titles, and any custom fields you've built in Folk.

Fireflies AI:Β Import your meeting recordings and transcripts from Fireflies, including meeting title, date, participants, and summary data β€” great for building a searchable log of all your calls.

tl;dv:Β Import meetings from tl;dv, including meeting metadata, participants, and key moments - so your recorded calls are part of your broader data workflow.


Export Auto-Mapping (New)

Exporters now automatically attempt to map your table columns to the exporter's fields β€” the same way enrichments already do. Less manual field-matching, fewer setup errors.

Value: saves time when setting up exports, especially for tables with many columns.


Export JSON Dict as Column (New)

When working with JSON columns, you can now extract a full nested JSON value into a separate column (not just text fields). Previously, the only option shown was "Write to another table."


Row Insertion Speed Improvements

Adding large numbers of rows (e.g. 1,000+) is now significantly faster.

Value: bulk imports and automations that write many rows complete much quicker.


UI & Quality of Life Improvements

Several quality-of-life updates shipped this week:

  • Exporter panel: added local search so you can quickly find and fill in parameters without scrolling β€” search stays active after losing focus so you can keep mapping fields.

  • Row detail view: the detail panel now updates as you move between rows with keyboard arrows.

  • Add row button: simplified to a single "Add row" button (adds 1 row to the bottom) with a small chevron menu for choosing quantity and position (top/bottom). Less cluttered, more intuitive.

  • Dialog & workspace UI polish: updated workspace settings and column settings dialogs with cleaner designs. The workspace switcher now has a more visible click target.

  • Import data modal: removed category groupings from the integration picker β€” cleaner and faster to browse.

  • Toolbar: buttons no longer get squished on narrower windows β€” labels collapse to icons gracefully when space is tight.

  • Search fields: clicking search now auto-focuses so you can start typing immediately (applies to table search, templates, and the data source picker).

  • Sign in / Register: buttons now show a loading spinner so it's clear your click registered.


Bug Fixes

  • Fixed broken REST API causing requests to fail on certain table configurations.

  • Fixed 502 errors that were hitting all requests (urgent incident, resolved).

  • Fixed Excel formula bugs causing incorrect formula behavior.

  • Fixed [object Object] displaying when copying or expanding a cell after changing its type from JSON to text.


Missed our previous updates? Check out our site at databar.ai for the latest news.

About Databar

Databar is a spreadsheet-style platform for working with APIs and go-to-market data. Connect 100+ data sources, enrich leads and companies in real time, transform messy outputs (including JSON), and automate workflows - all in one place. Build repeatable pipelines for prospecting, CRM enrichment, research, and reporting without juggling multiple tools or subscriptions.

February 20th, 2026

Merge Columns (New Transformation)

You can now merge multiple columns into one, using a simple β€œtry this first, then fallback to…” order.

Perfect for messy data where the same field might exist in different columns (e.g. company name from multiple providers).

Value: cleaner tables, fewer manual fixes, and consistent output with smart fallbacks.

AI Prompt Templates (Workspace-wide)

You can now save AI prompt templates and reuse them across your workspace anytime.

Value: faster workflows, consistent outputs, and no more rewriting prompts you use every day.

JSON Expander: Now in the Sidebar

We moved the JSON Expander into the right-side panel so it no longer overlays your table.

Value: you can keep your table visible while browsing JSON, and add fields more easily without losing context.

JQ Formula (New Transformation for JSON)

We added a new JQ Formula transformation that lets you parse, filter, and manipulate JSON fields per row, then write the result into a new column (stored as JSON).

This is great for turning β€œgiant JSON blobs” (events, activity logs, nested objects, etc.) into usable fieldsβ€”like counting specific event types, extracting nested values, or building structured outputs.

Value: makes JSON enrichments actually usable inside tablesβ€”without exporting to scripts.

JQ is a slightly more advanced language for querying JSON fields. We plan on adding a β€˜Generate with AI’ button which will generate the formula for you. However, ChatGPT (and any other LLM) is very good at crafting JQ queries when needed. Here is a guide on JQ: https://jqlang.org/

Advanced Custom API Settings: Rate Limit + Concurrency Controls (Scale+)

Scale plan (and above) users can now configure rate limits and concurrency for their custom-added APIs.

This helps power users fine-tune connector performanceβ€”speeding up high-volume runs while staying within provider limits and reducing failures/timeouts.

To use this feature simply open any custom API and edit the Rate limit and Simultaneous requests settings at the bottom.

Updated Batch Enrichment Runs (More Stable + Plan-Based Limits)

We’ve improved how batch enrichment runs work to make large runs more stable and reliable. Batch limits are now plan-based, and each plan can increase request rate limits as needed.

  • Expand: batch runs up to 200k rows

  • Enterprise and above: batch runs up to 1M rows

Added parameter search for large integrations

To make it easier to find the right parameters and map your table to integrations, we’ve added a search tool on the exporters parameters which lets you quickly search through available values.

Missed our previous updates?

Check out our site at databar.ai for the latest news or the changelog here:

About Databar

Databar is a spreadsheet-style platform for working with APIs and go-to-market data. Connect 100+ data sources, enrich leads and companies in real time, transform messy outputs (including JSON), and automate workflowsβ€”all in one place. Build repeatable pipelines for prospecting, CRM enrichment, research, and reporting without juggling multiple tools or subscriptions.

February 19th, 2026

New data providers in waterfall

We’ve added two new data sources to the β€œGet email by social link” waterfall. That waterfall now includes People Data Labs and FindyMail, increasing coverage and data quality.

The company data waterfall now includes additional standard fields in the result, including funding rounds, addresses/locations, industries, and estimated revenue.

Pipedrive Integration Re-vamp

Added 6 new inputs & filters to the Pipedrive integration, allowing you to pull Persons and Organizations with more precision. We’ve also added 3 new export to Pipedrive functions:

  • Create Organization

  • Update Organization

  • Update Person

Other updates & bug fixes

  • 🚀 Additional speed & performance updates

    • When launching an enrichment with 1000+ rows, the initial load will now come on faster & the enrichment will launch right away

    • Adding rows to bottom/top of table now happens instantly

  • πŸ“– Re-named and fixed naming for over 800 inputs, making them clearer and more informative

  • πŸ‘€ UI Update - no more column lag. Previously, when changing the widths and re-ordering columns quickly (or while an enrichment is running), columns would jump back to their previous position. This issue has been fixed

  • ⚠️ Error cells will now display the issue when you hover over the triangle icon so you can quickly debug your automations

🐞 Bug fixes

  • Several bug fixes to Excel formulas enrichments

  • Bug fixes to rate limits

    • Previously, rate limits were not strictly followed and had a 10% overage rate. This issue has been fixed and rate limits will now be strictly followed on all enrichments

  • Bug fixes for editing AI enrichments (required/optional conditions on column references not saving correctly)

  • Fixed bug: If you changed the width of columns previously, you may have noticed them jump back to their original width. This issue has been fixed and table edits should be smoother.

February 19th, 2026

Google Sheets Import

  • We’ve added a new "Import from Google Sheets" feature. When browsing a Google Sheets page, the extension automatically switches to a dedicated import view. You can now copy a range of cells (with headers) and import them directly into Databar via the clipboard.

The normal scraper UI (fields, toggles, view results) is hidden on Google Sheets pages since the scraper doesn't apply there.

Results Page Improvements

  • The "Preview results" button now closes the side panel automatically when opening the results page, reducing confusion.

  • CSV downloads are now named after the table/page title (e.g. "Y Combinator companies - Feb 9, 2026.csv").

  • Fixed CSV files opening incorrectly in Excel -- added UTF-8 BOM so Excel recognizes the format natively without the Text Import Wizard.

Data Parsing Fixes

  • Duplicate column headers (e.g. two columns named "Name") are now handled gracefully -- the second becomes "Name (2)" instead of silently overwriting data.

Link extraction fixes

Our β€˜extract link’ functionality was broken on our latest update - this has now been fixed and link extraction should work normally now.

February 3rd, 2026

We're thrilled to announce v3, a complete redesign of the Databar Chrome Extension! This release introduces a brand new sidebar-based interface, powerful new extraction features, and a streamlined experience for collecting data.


Complete Redesign: New Sidebar Interface

We've rebuilt the extension from the ground up with a new sidebar panel that stays open alongside your browsing. Having a side-bar allows you to see and read through the content of the page you’re on more easily and extract a larger number of fields more easily.

Key benefits:

  • Persistent workspace that doesn't disappear when interacting with the page

  • More screen real estate for viewing your fields and data

  • Seamless element selection without UI interruptions

  • Additional settings and configuration settings which are now easily available in the sidebar


New Features & Functionality

πŸ”Œ Sub-Element Extraction

Select a container element (like a product card or listing), click the Layers button, and instantly see all extractable sub-elements. Pick the specific data points you want (for example, β€œtitle”, β€œprice”, β€œrating”) and they're added as child fields, visually grouped with their parent.

πŸ”‘ Easier authentication

You now no longer need to add your Databar API key to send data to Databar. The Chrome extension will now check for any active Databar sessions automatically and add data to that workspace. You can still use API key authentication as an alternative to automatic connections. Configure it once in the sidebar settings and access a specific workspace from anywhere.

πŸ‘€ Watch mode

If you ever need to collect elements from multiple pages or after a scroll - simply turn on watch mode and the extension will automatically capture any new elements that appear in your tab and add them to the right field!

🧠 Smart CSV Downloads

Exported files now use descriptive filenames: {Page Title} | {Site Name} | {Date}.csv β€” no more generic "databar extension data" files cluttering your downloads.

πŸ†• CSS Selector Preview and Reset button

When selecting elements, the preview box now displays the CSS selector being used, giving you better insight into what's being captured.


Quality of life improvements

Custom Tooltips

All buttons now feature helpful tooltips that explain their function. Toggle buttons (Auto-scroll, Watch Mode, etc.) also display their current state.

Additional UI improvements

  • Cancel Button: Exit selection mode easily with a Cancel button β€” no need to remember the Escape key

  • Streamlined Selection Flow: Cleaner "Click an element" messaging consolidated into a single, focused display

  • Reorganized Results Page: Download CSV and Databar buttons moved to the header for quicker access

  • Updated Branding: Fresh branding, UI, and easier table controls throughout the extension

  • Performance improvement and ~40% smaller bundle size β€” removed code, making the sidebar more responsive and easier to work with


Getting Started with the new extension

  1. Click the Databar icon in your browser toolbar to open the sidebar

  2. Navigate to any webpage with data you want to collect

  3. Click "Add Field" and select elements on the page

  4. Use the Layers button to extract specific sub-elements from containers

  5. Export to CSV or send directly to your Databar workspace


Questions or feedback? We'd love to hear from you!

Install the extension here: Link β†’

Link to page in the Chrome sotre: Link β†’

January 23rd, 2026

Although we fell behind on changelog updates after August, we never stopped shipping. Over the past few months we rolled out a large number of improvements across automation, AI, APIs, and the core table experience.

Here are the most important updates you may have missed from August through December.


πŸ” Send data between tables

You can now send data from one table to another.

This makes it easy to:

  • Build multi-step workflows across tables

  • Append results from automations into separate datasets

  • Keep source and output data cleanly separated

Currently supported for single-row sends, with more coming.


πŸ” Detail view for full rows

You can now view a full row in a dedicated sidebar by clicking β€œView row” in the bottom right when a cell is selected.

This makes it much easier to:

  • Inspect large rows with many columns

  • Debug automations

  • Review AI outputs without horizontal scrolling

The experience is similar to tools like Asana or Linear.


βœ… Major update: Cell-level enrichment statuses

Previously, enrichment statuses were stored only at the row level. This made it hard to understand what happened inside complex automations or why something failed.

Databar now stores and displays enrichment statuses at the cell-level.

This unlocks several important improvements:

  • You can see exactly what happened at each step of an automation

  • Failures are visible at the cell level, not hidden at the row level

  • Most importantly, multiple enrichments can now run in parallel, significantly speeding up execution on large tables

This change removes a major bottleneck for advanced workflows.


βž• Add many rows at once

Previously, you could only add up to 10 rows at a time.

You can now add as many rows as you want to the top or bottom of a table using a dedicated input. This makes bulk data entry much faster.

Bottom bar

πŸ€– AI prompt generator

You can now generate optimized AI prompts directly inside Databar.

This works for:

  • AI Researcher agents

  • Custom AI prompt enrichments

Simply describe what you want, and Databar will generate a well-structured prompt for you.


🧠 New AI models

We updated our AI model lineup to reflect the latest developments in the AI ecosystem, improving output quality and reliability across AI features.


πŸ”Œ Custom API connectors improvements

When adding your own API connectors, Databar now supports:

  • PATCH requests

  • PUT requests

In addition to GET and POST. This allows for more complete and flexible API integrations.


πŸ”— Required column references for AI and text enrichments

You can now mark column references as required in AI and free-text enrichments.

If a required column is empty, the enrichment will not run. This prevents unnecessary executions and avoids invalid AI inputs.

To mark an input as required simply click the toggle in the reference. If the toggle is not selected, the field is marked as optional.


🧬 Map columns directly to nested JSON values

You no longer need to expand JSON into separate columns first.

Columns can now be mapped directly to nested JSON values, simplifying schemas and reducing extra steps in workflows.


πŸ“§ Email waterfall verifiers

We added three email verifiers to email finder waterfalls.

Each verifier checks whether an email is valid, and if not, the workflow automatically falls back to the next provider. This improves deliverability and data quality.


▢️ Run conditions now apply everywhere

Run conditions now trigger correctly whether you:

  • Run all rows

  • Run a single row

Previously, conditions only applied when running all rows. This is now consistent across execution modes.


πŸ’Έ Removed action charges for formulas and JSON tools

We no longer charge actions for:

  • JSON Expander

  • Formulas

  • Similar transformation-only operations

Only enrichments that call external services consume actions.


βš™οΈ Full-screen settings

Personal account settings and workspace settings have been consolidated into a single, full-screen settings page for easier navigation and management.


🧹 Customizable AI outputs

You can now remove the β€œresult” and β€œreasoning” fields from:

  • AI Researcher outputs

  • AI prompt enrichments

These fields were previously hard-coded and are now fully optional.


🎨 General UI and usability improvements

We shipped a number of UI updates focused on clarity and usability:

  • Updated icons and visuals

  • Cleaner layouts

  • Improved interaction consistency across the app