> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bigdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

The Bigdata API gives developers three powerful ways to integrate knowledge into their AI applications:

* **Research Agent** - a conversational endpoint for reasoning and analysis.
* **Workflows API** - templated, reproducible research for automation.
* **Search Service** - a retrieval-only endpoint for fast, precise document access.

Together, they combine information retrieval with generative AI, enabling applications to deliver accurate, context-aware responses grounded in real-time data and trusted knowledge sources.

# Research Agent

The Research Agent Service is designed for **conversational intelligence**. It supports multi-turn dialogue, letting users refine queries or ask follow-ups. Built on **retrieval-augmented generation (RAG)**, it merges an LLM framework with search across the web, premium sources, and your own content.

* **What it delivers:** Synthesized, context-rich answers that show reasoning, summarization, and insight.

* **Best for:** Business and financial research, complex analysis, decision support.

# Workflows API

The Workflows API enables **templated, reproducible research** designed for automation. Unlike the conversational Research Agent, Workflows uses parameterized templates that produce consistent outputs.

* **What it delivers:** Reproducible, structured research reports from reusable templates.
* **Best for:** Batch processing, scheduled reports, consistent analysis across entities.

# Search Service

The Search Service is a **retrieval-only API** that indexes both structured and unstructured data. Unlike the Research Agent, it does not interpret or summarize content, it simply returns the most relevant documents or snippets.

* **What it delivers:** Raw but precise results, optimized for low latency and high recall.
* **Best for:**
  * Grounding LLMs with factual context
  * Populating context windows
  * Powering standalone search tools
  * Supplying downstream agents with curated source material

# FAQ

<AccordionGroup>
  <Accordion title="What is the difference between Search and Research Agent Services?">
    The [Research Agent](../api-reference/research-agent) is a model endpoint designed for conversational intelligence. It supports multi-turn dialogue, allowing users to ask follow-up questions and refine their queries. Built on real-time retrieval-augmented generation (RAG), it combines an LLM framework with search capabilities across proprietary, premium, and web content sources.

    The result is a synthesized, context-aware response that reflects reasoning, summarization, and insight generation, ideal for business/financial analysis and complex decision support.

    In contrast, the [Search Service](../getting-started/quickstart_guide) is a retrieval-only API. It indexes structured and unstructured data to return the most relevant documents or snippets, without interpretation or synthesis. It's optimized for low latency and high precision, making it ideal for tasks such as grounding LLMs, populating context windows, powering search tools, or feeding downstream agents with raw but relevant content.

    <Tip>
      * Research Agent = LLM + RAG → contextual, reasoned answers.
      * Search = fast, relevant retrieval → raw source material.
    </Tip>
  </Accordion>

  <Accordion title="What is the difference between Fast and Smart Search modes?">
    Fast mode gives you full control over all filters for precise, deterministic, low-latency results. Smart mode handles query understanding for you, automatically inferring intent, applying filters, and running sub-queries for broader coverage. Ideal for natural-language questions without pre-processing. Higher latency than Fast mode.

    | **Request Parameter**   | **Fast Mode**                   | **Smart Mode**                                                    |
    | :---------------------- | :------------------------------ | :---------------------------------------------------------------- |
    | Text                    | ✅                               | ✅                                                                 |
    | Temporal filter         | ✅ Manual or Partially Automated | ✅ Manual or Fully Automated                                       |
    | Source filter           | ✅                               | ✅ Manual or Fully Automated                                       |
    | Reporting date filter   | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Document type filter    | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Entity filter           | ✅ Manual or Partially Automated | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Reporting entity filter | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Keyword filter          | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Sentiment filter        | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Ranking parameters      | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | Content Diversification | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated                |
    | External Search         | ✅                               | <Icon icon="sparkles" size={16} /> Fully Automated (if enabled)\* |

    \* You opt-in by setting [`external_search`](/api-reference/search/search-documents#body-query-external-search) with mode `INCLUDE` and any of the supported values (e.g., `web`). Smart Mode then decides whether to call external search based on query intent—if it determines external search isn't needed, no additional cost is incurred. This approach ensures you only pay for external search when it's actually used.
  </Accordion>
</AccordionGroup>

# Quickstart Guides

<CardGroup cols={1}>
  <Card title="Research Agent" icon="messages" horizontal="True" href="/getting-started/quickstart_guide_research_agent">
    Create intelligent assistants that combine web and premium data with your proprietary content for deeper insights and productivity.
  </Card>

  <Card title="Workflows API" icon="diagram-project" horizontal="True" href="/getting-started/quickstart_guide_workflows">
    Build reproducible, templated research workflows for automated analysis.
  </Card>

  <Card title="Search Service" icon="magnifying-glass" horizontal="True" href="/getting-started/quickstart_guide">
    Easily find the most relevant information from trusted sources and your own data. Use it to power agents that give accurate, real-time answers.
  </Card>
</CardGroup>

<Tip>
  For more in-depth, practical examples that build your confidence with specific service features, explore the [How-to guides](../how-to-guides/introduction) section. If you're interested in real financial use cases that deliver customer value, check out the [Cookbooks](../use-cases/introduction) section.
</Tip>

# Bigdata Developer Platform

We recommend using the [Developer Platform](https://platform.bigdata.com) to test your queries and understand how our APIs work.

Also, use it to manage your API keys and monitor your API consumption and costs.

<Card title="🚀 Bigdata Developer Platform" href="https://platform.bigdata.com">
  **Your companion for day-to-day Bigdata API development**

  The Developer Platform is your central hub for managing, testing, and optimizing your Bigdata API integrations. Get instant business value with interactive playgrounds that make it incredibly easy to understand how our APIs work and discover their full potential.

  **Key Features:**

  * **🎮 Advanced Playgrounds**: Interactive environments with visual input/output to experiment with queries and see results instantly
  * **🔑 API Management**: Centralized control of your API keys and access credentials
  * **📊 Usage & Spending Tracking**: Monitor your API consumption and costs in real-time
  * **📱 Demo Apps Library**: Explore pre-built applications showcasing what's possible with Bigdata APIs
</Card>
