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

> Get recent news articles for US public-company stock tickers.

[Financial Datasets](https://financialdatasets.ai) delivers structured market
data for US public companies. Through Exa Connect it exposes ticker-based news:
recent coverage of earnings, market reactions, and company events, keyed to a
stock symbol.

## Use it for

* Tracking news and press coverage for specific tickers.
* Summarizing earnings reactions and market-moving events.
* Building watchlists and monitoring portfolio companies.

## Provider ID

Use this value in `dataSources`:

```text theme={null}
financial_datasets
```

## Example

Get recent news for NVIDIA and summarize key themes.

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

  exa = Exa()
  run = exa.agent.runs.create(
      query="Get recent news about NVIDIA (NVDA) and summarize the key themes.",
      data_sources=[{"provider": "financial_datasets"}],
      output_schema={
          "type": "object",
          "required": ["ticker", "articles"],
          "properties": {
              "ticker": {"type": "string"},
              "articles": {
                  "type": "array",
                  "maxItems": 10,
                  "items": {
                      "type": "object",
                      "required": ["title", "source", "date", "theme"],
                      "properties": {
                          "title": {"type": "string"},
                          "source": {"type": "string"},
                          "date": {"type": "string"},
                          "theme": {"type": "string", "description": "e.g. earnings, product launch, regulation"},
                      },
                  },
              },
          },
      },
  )
  run = exa.agent.runs.poll_until_finished(run.id)
  ```

  ```typescript TypeScript theme={null}
  import Exa from "exa-js";

  const exa = new Exa();
  const run = await exa.agent.runs.create({
    query: "Get recent news about NVIDIA (NVDA) and summarize the key themes.",
    dataSources: [{ provider: "financial_datasets" }],
    outputSchema: {
      type: "object",
      required: ["ticker", "articles"],
      properties: {
        ticker: { type: "string" },
        articles: {
          type: "array",
          maxItems: 10,
          items: {
            type: "object",
            required: ["title", "source", "date", "theme"],
            properties: {
              title: { type: "string" },
              source: { type: "string" },
              date: { type: "string" },
              theme: { type: "string", description: "e.g. earnings, product launch, regulation" },
            },
          },
        },
      },
    },
  });
  ```

  ```bash cURL theme={null}
  curl -s -X POST "https://api.exa.ai/agent/runs" \
    -H "Content-Type: application/json" \
    -H "x-api-key: $EXA_API_KEY" \
    -d '{
      "query": "Get recent news about NVIDIA (NVDA) and summarize the key themes.",
      "dataSources": [{ "provider": "financial_datasets" }],
      "outputSchema": {
        "type": "object",
        "required": ["ticker", "articles"],
        "properties": {
          "ticker": { "type": "string" },
          "articles": {
            "type": "array",
            "maxItems": 10,
            "items": {
              "type": "object",
              "required": ["title", "source", "date", "theme"],
              "properties": {
                "title": { "type": "string" },
                "source": { "type": "string" },
                "date": { "type": "string" },
                "theme": { "type": "string", "description": "e.g. earnings, product launch, regulation" }
              }
            }
          }
        }
      }
    }'
  ```
</CodeGroup>

## Pairs well with

* [Particle](/reference/agent-api/connect/particle): compare published coverage with podcast commentary.
* [Baselayer](/reference/agent-api/connect/baselayer): verify the underlying entity behind a ticker.
* [Fiber.ai](/reference/agent-api/connect/fiber): enrich a public company with private-market peers and leadership contacts.
