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

# Schema 1 appendix

> The current default API reference remains reachable during the schema-2 migration.

Schema 1 is the **current default**. If you call a tool without `schema`, the API serves schema 1.

```bash theme={null}
curl -sS "https://api.stockcontext.com/v1/tools/stock_financials" \
  -H "X-API-Key: $STOCKCONTEXT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"AAPL","periods":1}'
```

You may also be explicit:

```json theme={null}
{ "schema": 1, "symbol": "AAPL", "periods": 1 }
```

The generated endpoint pages below remain the schema-1 appendix until Wave 3:

* [API reference overview](/api-reference/overview)
* [stock\_search](/api-reference/endpoints/discovery/stock_search)
* [stock\_reference](/api-reference/endpoints/discovery/stock_reference)
* [stock\_financials](/api-reference/endpoints/financials/stock_financials)
* [stock\_overview](/api-reference/endpoints/financials/stock_overview)
* [stock\_prices](/api-reference/endpoints/market-data/stock_prices)
* [stock\_filings](/api-reference/endpoints/filings-and-activity/stock_filings)
* [stock\_insider](/api-reference/endpoints/filings-and-activity/stock_insider)
* [stock\_ownership](/api-reference/endpoints/filings-and-activity/stock_ownership)

Schema 2 is opt-in during Waves 1-2. Start with [Versioning](/reference/versioning) before mixing schema versions in one integration.
