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

# Build with Databar

> Enrich, transform, and manage your data programmatically with the Databar API, SDK, CLI, or MCP server.

Databar gives you programmatic access to 160+ integrations, enrichment workflows, waterfall logic, and structured tables. Use the REST API, Python SDK, CLI, or MCP server to build data pipelines, enrich your CRM, score leads, or let AI agents handle research for you.

## Get started

Pick the path that fits your stack. Each guide walks you through authentication and your first successful request.

<CardGroup cols={2}>
  <Card title="REST API" icon="code" href="/quickstart-rest">
    Raw HTTP with cURL, JavaScript, or any language. Start here if you want full control.
  </Card>

  <Card title="Python SDK" icon="python" href="/python-sdk">
    Typed client with built-in polling and error handling. Install with `pip install databar`.
  </Card>

  <Card title="CLI" icon="terminal" href="/cli">
    Run enrichments and manage tables from your terminal. Great for scripting and AI agents.
  </Card>

  <Card title="MCP Server" icon="robot" href="/quickstart-mcp">
    Connect Databar to Claude, Cursor, or other MCP-compatible AI tools. No code required.
  </Card>
</CardGroup>

## Core concepts

**Enrichments** are the building blocks. Each enrichment connects to a data provider (LinkedIn, Clearbit, Hunter, etc.) and returns structured data for a given input. You can run enrichments individually, in bulk, or attach them to a table. [Browse enrichments](/api-reference/endpoint/enrichments-list)

**Waterfalls** chain multiple providers together for the same lookup. If the first provider returns no result, the next one is tried automatically. This maximizes coverage without writing fallback logic yourself. [Browse waterfalls](/api-reference/endpoint/waterfalls-list)

**Tables** are structured datasets that live in your Databar workspace. You create a table, insert rows, attach enrichments or waterfalls, and run them across all rows. Results are stored in the table and accessible via the API or the Databar UI. [Tables API](/api-reference/endpoint/tables-create)

**Connectors** let you bring your own API credentials for supported providers, or define custom HTTP endpoints that Databar can call as enrichment sources. [Connectors API](/api-reference/endpoint/connectors-list)

**Exporters** push data from your tables into external destinations like HubSpot, Salesforce, Google Sheets, or custom webhooks. [Browse exporters](/api-reference/endpoint/exporters-list)

**Tasks** represent async operations. When you run an enrichment or waterfall, you get back a `task_id`. Poll the task endpoint to check status and retrieve results. Task data is stored for 24 hours. [Tasks API](/api-reference/endpoint/tasks-get-status)

## What you can build

* **Lead enrichment pipelines** that pull company data, emails, and phone numbers for every new signup or CRM import. [Walkthrough](/guides/enrich-leads)
* **Waterfall email finders** that try multiple providers until they find a verified email. [Walkthrough](/guides/waterfall-email-finder)
* **Table-driven enrichment workflows** where you create a table, add rows, attach enrichments, and run everything in a few API calls. [Walkthrough](/guides/table-enrichment-pipeline)
* **AI-powered research agents** that use the MCP server to discover and run enrichments with natural language. [MCP quickstart](/quickstart-mcp)

## Explore

<CardGroup cols={3}>
  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    All endpoints with request and response examples.
  </Card>

  <Card title="MCP Server" icon="robot" href="/mcp-server">
    Connect Databar to Claude, Cursor, and other AI tools.
  </Card>

  <Card title="Product Guide" icon="book-open" href="/product-guide/what-is-databar">
    Learn how Databar works from the UI perspective.
  </Card>
</CardGroup>
