Reading lesson with structured written material and clear navigation inside the course flow.
Access
Upgrade to Learner to open the full Academy library, certificates, and comparison tables.
Lesson preview
Your First API Call Time to write real code! Let's fetch market data from an exchange using ccxt. Fetching a Ticker A ticker gives you the current state of a trading pair: import ccxt from config import EXCHANGE_CONFIG, EXCHANGE_NAME exchange = getattr(ccxt, EXCHANGE_NAME)(EXCHANGE_CONFIG) # Get current BTC/USDT...