AGX API v1 Base URL: https://api.agx.sh/v1 Available Endpoints: ───────────────────────────────────────────────────────────────── INFO - Complete list of traded commodities GET /v1/info Rate limit: 5/minute Parameters: None Response: { "exchanges": [ { "exchange": , "products": [ { "symbol": , "name": , "units": , "category": , "info": , "last_date": , "change_pct": } ] } ] } ───────────────────────────────────────────────────────────────── PRICES - Historical commodity prices GET /v1/prices Parameters: • symbol Product symbol (required) • exchange Exchange code (required) • start Start date (yyyy-mm-dd) (required) • end End date (yyyy-mm-dd) (required) Response: { "exchange": , "product": , "symbol": , "units": , "timeframe": , "data": [ { "timestamp": , "high": , "low": } ] } ───────────────────────────────────────────────────────────────── Note: All dates are in YYYY-MM-DD format.