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

# Financial Markets

> Find market data, filings, earnings calls, and economic releases with Exa Search.

export const PlaygroundQuery = ({query, category, filters}) => {
  const PLAYGROUND = "https://dashboard.exa.ai/playground/search";
  const DEFAULT_FILTERS = {
    type: "auto",
    highlights: true
  };
  const params = [`q=${encodeURIComponent(query)}`];
  if (category) params.push(`c=${encodeURIComponent(category)}`);
  params.push(`filters=${encodeURIComponent(JSON.stringify({
    ...DEFAULT_FILTERS,
    ...filters
  }))}`);
  const href = `${PLAYGROUND}?${params.join("&")}`;
  return <div className="playground-query not-prose">
      <code className="playground-query-text">{query}</code>
      <a className="playground-query-run" href={href} target="_blank" rel="noreferrer" title="Open in API playground" aria-label={`Open "${query}" in the API playground`}>
        {}
        <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
          <path d="M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6" />
          <path d="m21 3-9 9" />
          <path d="M15 3h6v6" />
        </svg>
      </a>
    </div>;
};

Use Exa Search for prices, filings, transcripts, and the reporting around them in one query. A question about a ticker can return the quote, the latest earnings call, and analyst coverage together.

## Included

* Quotes and recent price history for stocks, crypto, forex, indices, futures, options, and commodities
* Security profiles with key statistics and daily OHLCV history
* Earnings call transcripts, with prepared remarks and Q\&A attributed to speakers
* SEC filings, reported financials, and international filings
* Analyst estimates, funding announcements, and economic releases

## Use it for

* Equity and credit research
* KYC, KYB, and adverse-media screening
* Portfolio and policy monitoring
* Deal sourcing and private-market research

## Example queries

### Look up a quote

Name the ticker or company and the figure you want. A cashtag such as `$NVDA` also works.

<PlaygroundQuery query="NVIDIA stock price and change today" />

### Read an earnings call

Name the company and quarter to retrieve the transcript rather than coverage of it.

<PlaygroundQuery query="Tyson Foods Q4 FY2025 earnings call transcript" />

### Search filings

Describe the disclosure you are looking for, not just the form type. The `financial report` category keeps results to filings and reports.

<PlaygroundQuery query="10-K risk factors that mention dependency on third-party AI models" category="financial report" />

### Track private-market activity

Specify the round, sector, and time window.

<PlaygroundQuery query="Series B rounds in climate tech announced this quarter" />

### Follow economic data

Name the release and the figure you want from it.

<PlaygroundQuery query="most recent US CPI release and month-over-month change" />

## Make a request

<CodeGroup>
  ```python Python theme={null}
  from exa_py import Exa

  exa = Exa()

  results = exa.search(
      "10-K risk factors that mention dependency on third-party AI models",
      type="auto",
      category="financial report",
      num_results=10,
  )
  ```

  ```javascript JavaScript theme={null}
  import Exa from "exa-js";

  const exa = new Exa();

  const results = await exa.search(
    "10-K risk factors that mention dependency on third-party AI models",
    {
      type: "auto",
      category: "financial report",
      numResults: 10,
    }
  );
  ```

  ```bash cURL theme={null}
  curl -s -X POST https://api.exa.ai/search \
    -H "Authorization: Bearer $EXA_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "query": "10-K risk factors that mention dependency on third-party AI models",
      "type": "auto",
      "category": "financial report",
      "numResults": 10
    }'
  ```
</CodeGroup>

## Get structured data with Exa Agent

For structured data that requires research across multiple sources, use an [Exa Agent task run](/docs/agent/quickstart). Describe the securities, periods, criteria, and output fields you need, and Agent returns schema-validated results with citations.

<Card title="Start an Agent task" icon="bot" href="/docs/agent/quickstart" cta="Open Agent guide" arrow="true">
  Screen companies, compare filings, or assemble a structured brief across a portfolio.
</Card>
