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

# Nasdaq Data Link

> Nasdaq's data marketplace (formerly Quandl) providing financial, economic, and alternative datasets as time series.

Nasdaq's data marketplace (formerly Quandl) providing financial, economic, and alternative datasets as time series. Best for quantitative analysis workflows needing structured financial data — equity fundamentals, futures, economic indicators, and alternative data feeds. Offers curated datasets beyond raw market data — complementary to SEC EDGAR (filings) and Lava Data (aggregated indicators).

1 example endpoint available through Lava's AI Gateway. See the [Nasdaq Data Link API docs](https://docs.data.nasdaq.com/docs/getting-started) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

<Info>This is a **catch-all provider** — any valid URL under `https://data.nasdaq.com/api/v3` is supported. Any GET to [https://data.nasdaq.com/api/v3/](https://data.nasdaq.com/api/v3/)\* — pass the full Nasdaq Data Link API URL. The endpoints below are curated examples.</Info>

## Endpoints

### Get time series data

**GET** `https://data.nasdaq.com/api/v3/datasets/WIKI/AAPL.json` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://data.nasdaq.com/api/v3/datasets/WIKI/AAPL.json', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fdata.nasdaq.com%2Fapi%2Fv3%2Fdatasets%2FWIKI%2FAAPL.json" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
