# Create Account Source: https://docs.plurex.io/api-reference/platform/accounts/create POST /api/v1/accounts/command/Create Create a new execution account # Delete Account Source: https://docs.plurex.io/api-reference/platform/accounts/delete POST /api/v1/accounts/command/Delete Delete an execution account # Get Account Source: https://docs.plurex.io/api-reference/platform/accounts/get POST /api/v1/accounts/query/Get Get details of a specific execution account # List Accounts Source: https://docs.plurex.io/api-reference/platform/accounts/list POST /api/v1/accounts/query/List List execution accounts for a tenant # Refresh Account Source: https://docs.plurex.io/api-reference/platform/accounts/refresh POST /api/v1/accounts/command/Refresh Refresh credentials for an execution account # Rename Account Source: https://docs.plurex.io/api-reference/platform/accounts/rename POST /api/v1/accounts/command/Rename Rename an execution account # Cancel Order Source: https://docs.plurex.io/api-reference/platform/hosts/cancel-order POST /api/v1/hosts/command/CancelOrder Cancel an existing order # Get Market Leverage Source: https://docs.plurex.io/api-reference/platform/hosts/get-leverage POST /api/v1/hosts/query/GetMarketLeverage Get current leverage for a specific market # Get Market State Source: https://docs.plurex.io/api-reference/platform/hosts/get-market-state POST /api/v1/hosts/query/GetAccountMarketState Get detailed market state for a specific account and instrument # Get Order Source: https://docs.plurex.io/api-reference/platform/hosts/get-order POST /api/v1/hosts/query/GetOrder Get status of a specific order # Get Position Mode Source: https://docs.plurex.io/api-reference/platform/hosts/get-position-mode POST /api/v1/hosts/query/GetPositionMode Get current position mode for a specific market # List Hosts Source: https://docs.plurex.io/api-reference/platform/hosts/list POST /api/v1/hosts/query/List List all available execution hosts (brokers) # List All Open Orders Source: https://docs.plurex.io/api-reference/platform/hosts/list-all-orders POST /api/v1/hosts/query/ListAllOpenOrders Get all open orders for all accounts across all hosts # List All Open Positions Source: https://docs.plurex.io/api-reference/platform/hosts/list-all-positions POST /api/v1/hosts/query/ListAllOpenPositions Get all open positions for all accounts across all hosts # List All Wallets Source: https://docs.plurex.io/api-reference/platform/hosts/list-all-wallets POST /api/v1/hosts/query/ListAllWallets Get wallets for all accounts across all hosts # List Host Markets Source: https://docs.plurex.io/api-reference/platform/hosts/list-markets POST /api/v1/hosts/query/ListMarkets List available markets for a specific host # List Open Orders Source: https://docs.plurex.io/api-reference/platform/hosts/list-orders POST /api/v1/hosts/query/ListOpenOrders Get open orders for a specific account # List Open Positions Source: https://docs.plurex.io/api-reference/platform/hosts/list-positions POST /api/v1/hosts/query/ListOpenPositions Get open positions for a specific account # List Recent Orders Source: https://docs.plurex.io/api-reference/platform/hosts/list-recent-orders POST /api/v1/hosts/query/ListRecentOrders Get recent orders for a specific account and instrument # List Wallets Source: https://docs.plurex.io/api-reference/platform/hosts/list-wallets POST /api/v1/hosts/query/ListWallets Get wallets for a specific account # Set Market Leverage Source: https://docs.plurex.io/api-reference/platform/hosts/set-leverage POST /api/v1/hosts/command/SetMarketLeverage Set leverage for a specific market # Set Position Mode Source: https://docs.plurex.io/api-reference/platform/hosts/set-position-mode POST /api/v1/hosts/command/SetPositionMode Set position mode for a specific market # Submit Limit Order Source: https://docs.plurex.io/api-reference/platform/hosts/submit-limit-order POST /api/v1/hosts/command/SubmitLimitOrder Submit a new limit order # Submit Limit Trigger Order Source: https://docs.plurex.io/api-reference/platform/hosts/submit-limit-trigger-order POST /api/v1/hosts/command/SubmitLimitTriggerOrder Submit a new limit trigger order # Submit Market Order Source: https://docs.plurex.io/api-reference/platform/hosts/submit-market-order POST /api/v1/hosts/command/SubmitMarketOrder Submit a new market order # Overview Source: https://docs.plurex.io/api-reference/platform/overview The Plurex Platform API uses a Command & Query Separation (CQS) architecture for managing exchange accounts, hosts, and venues. The Plurex Platform API is designed to expose the full range of functionality available through the [Plurex web application](https://platform.plurex.io). ## CQS Architecture The API follows a **Command & Query Separation (CQS)** pattern: * **Queries**: Read-only operations used to fetch state. (e.g., listing venues, getting balances) * **Commands**: State-changing operations used to perform actions. (e.g., submitting orders, creating accounts) All operations use **HTTP POST** with JSON payloads, regardless of whether they are commands or queries. ## Key Modules The Platform API is structured around several key functional areas: Explore available liquidity venues and their markets. Manage execution hosts (brokers), query wallets, positions, and orders. Programmatically manage your linked exchange accounts. Create and manage paper trading accounts for testing. ## Authentication All requests require authentication using your API Key and API Secret, which can be managed in your Plurex account settings. # Create Paper Account Source: https://docs.plurex.io/api-reference/platform/paper/create POST /api/v1/paper/command/Create Create a new paper trading account # Deposit Paper Funds Source: https://docs.plurex.io/api-reference/platform/paper/deposit POST /api/v1/paper/command/Deposit Deposit funds into a paper trading account # List Venues Source: https://docs.plurex.io/api-reference/platform/venues/list POST /api/v1/venues/query/List List all available liquidity venues # List Venue Markets Source: https://docs.plurex.io/api-reference/platform/venues/list-markets POST /api/v1/venues/query/ListMarkets List available markets for a specific venue # Add Exchange Source: https://docs.plurex.io/platform/add-exchange Add your first Exchange account. TODO # Overview Source: https://docs.plurex.io/platform/overview Get a quick overview of the platform before you start.