Authentication

Configure your API key to authenticate with the Podium platform.

Get Your API Key

  1. Sign in to your Podium account at podium.trade
  2. Navigate to Settings → API Keys
  3. Click "Generate New API Key"
  4. 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")