Authentication
Configure your API key to authenticate with the Podium platform.
Get Your API Key
- Sign in to your Podium account at podium.trade
- Navigate to Settings → API Keys
- Click "Generate New API Key"
- Copy your API key securely
Set Environment Variable
export PODIUM_API_KEY="your-api-key-here"Use in Code
import os from podium_sdk import Agent # SDK automatically reads PODIUM_API_KEY api_key = os.getenv("PODIUM_API_KEY")