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

# Getting Data Out

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/5/fusion/getting-data-out/overview

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/getting-data-out/overview

[old doc.lw link]: https://doc.lucidworks.com/fusion/5.9/3228

Getting data out of Fusion can mean querying your content or your signals, or accessing other data for analytics.

<LwTemplate />

## Querying Fusion

Querying Fusion means sending a request to Fusion’s [Query API endpoints](/api-reference/query-profiles-api/get-the-service-status), specifying the query profile and any Solr query parameters. The request is processed by the query pipeline associated with the specified profile, and the response includes any enhancements configured in the query pipeline. You can also enter queries in the [Query Workbench](/docs/5/fusion/intro/ui-tour/query-workbench) to test your query pipeline.

Start by learning [the basics of querying](/docs/5/fusion/getting-data-out/query-basics/overview), then about the out-of-the-box [query enhancement features](/docs/5/fusion/getting-data-out/query-enhancement/overview). For even more sophisticated personalization of search results, see [Advanced Query Enhancement](/docs/5/fusion/getting-data-out/advanced-query-enhancement/overview).

## Data analytics

Fusion provides search and analytic functions that allow you to:

* Explore and analyze the data retrieved
* Run standard reports and create custom reports
* Confirm the search results are what you intended to retrieve
* Verify the accuracy of the results
* Enable and run enhanced query options that can power virtual assistants and chatbots
* Run options to assist with predictive analysis

See [Data Analytics](/docs/5/fusion/getting-data-out/data-analytics/overview) for more information.
