Get Started with the Python Financial Data API in 3 Steps
From signup to your first stock market data call in under 5 minutes
GET YOUR API KEY
Sign up for a free account and instantly receive your API key. No credit card required.
AXION_API_KEY=axn_...INSTALL THE PYTHON SDK
Install the Python finance library, or grab a TypeScript client, with a single command.
pip install axionquant-sdkMAKE YOUR FIRST CALL
Fetch decades of daily and hourly stock market data back to 1987 with just a few lines of code.
from axion import Axion
client = Axion("AXION_API_KEY")
quote = client.get_stock_prices('AAPL')




















