Skip to main content
Schema 1 is the current default. If you call a tool without schema, the API serves schema 1.
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:
{ "schema": 1, "symbol": "AAPL", "periods": 1 }
The generated endpoint pages below remain the schema-1 appendix until Wave 3: Schema 2 is opt-in during Waves 1-2. Start with Versioning before mixing schema versions in one integration.